AJA NTV2 SDK
17.5.0.1658
NTV2 SDK 17.5.0.1658
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Functions
a
b
c
e
f
g
h
i
j
k
l
m
o
p
r
s
t
u
v
w
Variables
Typedefs
a
b
c
d
e
f
g
h
i
j
k
m
n
o
p
r
s
t
u
v
Enumerations
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Typedefs
_
a
b
c
d
e
f
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Enumerations
Enumerator
b
c
e
g
k
n
r
v
Related Functions
:
a
b
c
d
j
o
s
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Variables
_
a
b
c
e
f
g
h
i
k
l
m
n
p
r
s
t
u
v
w
Typedefs
_
a
b
c
d
f
h
i
j
l
m
n
o
p
q
r
s
t
u
w
Enumerations
_
a
b
c
d
e
f
h
i
j
k
m
n
p
q
r
s
t
u
v
x
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
process.cpp
Go to the documentation of this file.
1
/* SPDX-License-Identifier: MIT */
8
// include the system dependent implementation class
9
10
#if defined(AJA_WINDOWS)
11
#include "
ajabase/system/windows/processimpl.h
"
12
#elif defined(AJA_MAC)
13
#include "
ajabase/system/mac/processimpl.h
"
14
#elif defined(AJA_LINUX)
15
#include "
ajabase/system/linux/processimpl.h
"
16
#elif defined(AJA_BAREMETAL)
17
#include "
ajabase/system/bm/processimpl.h
"
18
#endif
19
20
#include "
process.h
"
21
22
AJAProcess::AJAProcess
() : mpImpl(
NULL
)
23
{
24
mpImpl =
new
AJAProcessImpl
();
25
}
26
27
AJAProcess::~AJAProcess
()
28
{
29
if
(mpImpl)
30
delete
mpImpl;
31
mpImpl =
NULL
;
32
}
33
34
uint64_t
35
AJAProcess::GetPid
()
36
{
37
return
AJAProcessImpl::GetPid
();
38
}
39
40
bool
41
AJAProcess::IsValid
(uint64_t pid)
42
{
43
return
AJAProcessImpl::IsValid
(pid);
44
}
45
46
bool
47
AJAProcess::Activate
(uint64_t handle)
48
{
49
return
AJAProcessImpl::Activate
(handle);
50
}
51
52
bool
53
AJAProcess::Activate
(
const
char
* pWindow)
54
{
55
return
AJAProcessImpl::Activate
(pWindow);
56
}
processimpl.h
Declares the AJAProcessImpl class.
processimpl.h
Declares the AJAProcessImpl class.
AJAProcessImpl::GetPid
static uint64_t GetPid()
Definition:
processimpl.cpp:28
NULL
#define NULL
Definition:
ntv2caption608types.h:19
AJAProcessImpl::Activate
static bool Activate(uint64_t handle)
Definition:
processimpl.cpp:43
process.h
Declares the AJAProcess class.
AJAProcess::GetPid
static uint64_t GetPid()
Definition:
process.cpp:35
processimpl.h
Declares the AJAProcessImpl class.
AJAProcess::Activate
static bool Activate(uint64_t handle)
Definition:
process.cpp:47
AJAProcessImpl::IsValid
static bool IsValid(uint64_t pid)
Definition:
processimpl.cpp:34
AJAProcess::IsValid
static bool IsValid(uint64_t pid)
Definition:
process.cpp:41
processimpl.h
AJAProcess::~AJAProcess
virtual ~AJAProcess()
Definition:
process.cpp:27
AJAProcess::AJAProcess
AJAProcess()
Definition:
process.cpp:22
AJAProcessImpl
Definition:
processimpl.h:16
libajantv2
ajabase
system
process.cpp
Generated on Tue Feb 25 2025 18:41:14 for AJA NTV2 SDK by
1.8.17