AJA NTV2 SDK  18.0.0.2122
NTV2 SDK 18.0.0.2122
lockimpl.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: MIT */
8 #ifndef AJA_LOCK_IMPL_H
9 #define AJA_LOCK_IMPL_H
10 
11 #include "ajabase/system/system.h"
12 #include "ajabase/common/common.h"
13 #include "ajabase/system/lock.h"
14 
15 
16 class AJALockImpl
17 {
18 public:
19 
20  AJALockImpl(const char* pName);
21  virtual ~AJALockImpl();
22 
23  AJAStatus Lock(uint32_t uTimeout = 0xffffffff);
24  AJAStatus Unlock();
25 
27 };
28 
29 #endif // AJA_LOCK_IMPL_H
Declares the AJALock class.
CHAR * pName
Definition: amvideo.cpp:26
AJAStatus
Definition: types.h:380
AJAStatus Lock(uint32_t uTimeout=0xffffffff)
Definition: lockimpl.cpp:87
short HANDLE
Definition: ajatypes.h:285
virtual ~AJALockImpl()
Definition: lockimpl.cpp:72
System specific functions.
Private include file for all ajabase sources.
HANDLE mMutex
Definition: lockimpl.h:26
AJAStatus Unlock()
Definition: lockimpl.cpp:143
AJALockImpl(const char *pName)
Definition: lockimpl.cpp:20