GetNLSVersionEx method

int GetNLSVersionEx(
  1. int function,
  2. Pointer<Uint16> lpLocaleName,
  3. Pointer<LPNLSVERSIONINFOEX> lpVersionInformation
)

Implementation

int GetNLSVersionEx(
  int function,
  ffi.Pointer<ffi.Uint16> lpLocaleName,
  ffi.Pointer<LPNLSVERSIONINFOEX> lpVersionInformation,
) {
  return (_GetNLSVersionEx ??=
      _dylib.lookupFunction<_c_GetNLSVersionEx, _dart_GetNLSVersionEx>(
          'GetNLSVersionEx'))(
    function,
    lpLocaleName,
    lpVersionInformation,
  );
}