CreateEventA method
Implementation
ffi.Pointer<ffi.Void> CreateEventA(
ffi.Pointer<LPSECURITY_ATTRIBUTES> lpEventAttributes,
int bManualReset,
int bInitialState,
ffi.Pointer<ffi.Int8> lpName,
) {
return (_CreateEventA ??= _dylib
.lookupFunction<_c_CreateEventA, _dart_CreateEventA>('CreateEventA'))(
lpEventAttributes,
bManualReset,
bInitialState,
lpName,
);
}