GetPrivateProfileSectionW method
Implementation
int GetPrivateProfileSectionW(
ffi.Pointer<ffi.Uint16> lpAppName,
ffi.Pointer<ffi.Uint16> lpReturnedString,
int nSize,
ffi.Pointer<ffi.Uint16> lpFileName,
) {
return (_GetPrivateProfileSectionW ??= _dylib.lookupFunction<
_c_GetPrivateProfileSectionW,
_dart_GetPrivateProfileSectionW>('GetPrivateProfileSectionW'))(
lpAppName,
lpReturnedString,
nSize,
lpFileName,
);
}