CreateMutexA method
Pointer<Void>
CreateMutexA(
- Pointer<
LPSECURITY_ATTRIBUTES> lpMutexAttributes, - int bInitialOwner,
- Pointer<
Int8> lpName
Implementation
ffi.Pointer<ffi.Void> CreateMutexA(
ffi.Pointer<LPSECURITY_ATTRIBUTES> lpMutexAttributes,
int bInitialOwner,
ffi.Pointer<ffi.Int8> lpName,
) {
return (_CreateMutexA ??= _dylib
.lookupFunction<_c_CreateMutexA, _dart_CreateMutexA>('CreateMutexA'))(
lpMutexAttributes,
bInitialOwner,
lpName,
);
}