GetPrivateProfileStructW method

int GetPrivateProfileStructW(
  1. Pointer<Uint16> lpszSection,
  2. Pointer<Uint16> lpszKey,
  3. Pointer<Void> lpStruct,
  4. int uSizeStruct,
  5. Pointer<Uint16> szFile,
)

Implementation

int GetPrivateProfileStructW(
  ffi.Pointer<ffi.Uint16> lpszSection,
  ffi.Pointer<ffi.Uint16> lpszKey,
  ffi.Pointer<ffi.Void> lpStruct,
  int uSizeStruct,
  ffi.Pointer<ffi.Uint16> szFile,
) {
  return (_GetPrivateProfileStructW ??= _dylib.lookupFunction<
      _c_GetPrivateProfileStructW,
      _dart_GetPrivateProfileStructW>('GetPrivateProfileStructW'))(
    lpszSection,
    lpszKey,
    lpStruct,
    uSizeStruct,
    szFile,
  );
}