CreateMailslotW method
Implementation
ffi.Pointer<ffi.Void> CreateMailslotW(
ffi.Pointer<ffi.Uint16> lpName,
int nMaxMessageSize,
int lReadTimeout,
ffi.Pointer<LPSECURITY_ATTRIBUTES> lpSecurityAttributes,
) {
return (_CreateMailslotW ??=
_dylib.lookupFunction<_c_CreateMailslotW, _dart_CreateMailslotW>(
'CreateMailslotW'))(
lpName,
nMaxMessageSize,
lReadTimeout,
lpSecurityAttributes,
);
}