Function CreateEventEx [src]

Prototype

pub fn CreateEventEx(attributes: ?*SECURITY_ATTRIBUTES, name: []const u8, flags: DWORD, desired_access: DWORD) !HANDLE

Parameters

attributes: ?*SECURITY_ATTRIBUTESname: []const u8flags: DWORDdesired_access: DWORD

Source

pub fn CreateEventEx(attributes: ?*SECURITY_ATTRIBUTES, name: []const u8, flags: DWORD, desired_access: DWORD) !HANDLE { const nameW = try sliceToPrefixedFileW(null, name); return CreateEventExW(attributes, nameW.span().ptr, flags, desired_access); }