GetDateFormatEx method
Implementation
int GetDateFormatEx(
ffi.Pointer<ffi.Uint16> lpLocaleName,
int dwFlags,
ffi.Pointer<LPSYSTEMTIME> lpDate,
ffi.Pointer<ffi.Uint16> lpFormat,
ffi.Pointer<ffi.Uint16> lpDateStr,
int cchDate,
ffi.Pointer<ffi.Uint16> lpCalendar,
) {
return (_GetDateFormatEx ??=
_dylib.lookupFunction<_c_GetDateFormatEx, _dart_GetDateFormatEx>(
'GetDateFormatEx'))(
lpLocaleName,
dwFlags,
lpDate,
lpFormat,
lpDateStr,
cchDate,
lpCalendar,
);
}