LCMapStringEx method

int LCMapStringEx(
  1. Pointer<Uint16> lpLocaleName,
  2. int dwMapFlags,
  3. Pointer<Uint16> lpSrcStr,
  4. int cchSrc,
  5. Pointer<Uint16> lpDestStr,
  6. int cchDest,
  7. Pointer<NLSVERSIONINFO> lpVersionInformation,
  8. Pointer<Void> lpReserved,
  9. int sortHandle,
)

Implementation

int LCMapStringEx(
  ffi.Pointer<ffi.Uint16> lpLocaleName,
  int dwMapFlags,
  ffi.Pointer<ffi.Uint16> lpSrcStr,
  int cchSrc,
  ffi.Pointer<ffi.Uint16> lpDestStr,
  int cchDest,
  ffi.Pointer<NLSVERSIONINFO> lpVersionInformation,
  ffi.Pointer<ffi.Void> lpReserved,
  int sortHandle,
) {
  return _LCMapStringEx(
    lpLocaleName,
    dwMapFlags,
    lpSrcStr,
    cchSrc,
    lpDestStr,
    cchDest,
    lpVersionInformation,
    lpReserved,
    sortHandle,
  );
}