FindNLSStringEx method
int
FindNLSStringEx(
- Pointer<Uint16> lpLocaleName,
- int dwFindNLSStringFlags,
- Pointer<Uint16> lpStringSource,
- int cchSource,
- Pointer<Uint16> lpStringValue,
- int cchValue,
- Pointer<Int32> pcchFound,
- Pointer<LPNLSVERSIONINFO> lpVersionInformation,
- Pointer<Void> lpReserved,
- int sortHandle,
)
Implementation
int FindNLSStringEx(
ffi.Pointer<ffi.Uint16> lpLocaleName,
int dwFindNLSStringFlags,
ffi.Pointer<ffi.Uint16> lpStringSource,
int cchSource,
ffi.Pointer<ffi.Uint16> lpStringValue,
int cchValue,
ffi.Pointer<ffi.Int32> pcchFound,
ffi.Pointer<LPNLSVERSIONINFO> lpVersionInformation,
ffi.Pointer<ffi.Void> lpReserved,
int sortHandle,
) {
return (_FindNLSStringEx ??=
_dylib.lookupFunction<_c_FindNLSStringEx, _dart_FindNLSStringEx>(
'FindNLSStringEx'))(
lpLocaleName,
dwFindNLSStringFlags,
lpStringSource,
cchSource,
lpStringValue,
cchValue,
pcchFound,
lpVersionInformation,
lpReserved,
sortHandle,
);
}