LookupPrivilegeDisplayNameW method
Implementation
int LookupPrivilegeDisplayNameW(
ffi.Pointer<ffi.Uint16> lpSystemName,
ffi.Pointer<ffi.Uint16> lpName,
ffi.Pointer<ffi.Uint16> lpDisplayName,
ffi.Pointer<ffi.Uint64> cchDisplayName,
ffi.Pointer<ffi.Uint64> lpLanguageId,
) {
return (_LookupPrivilegeDisplayNameW ??= _dylib.lookupFunction<
_c_LookupPrivilegeDisplayNameW,
_dart_LookupPrivilegeDisplayNameW>('LookupPrivilegeDisplayNameW'))(
lpSystemName,
lpName,
lpDisplayName,
cchDisplayName,
lpLanguageId,
);
}