GetDateFormatA method
Implementation
int GetDateFormatA(
int Locale,
int dwFlags,
ffi.Pointer<LPSYSTEMTIME> lpDate,
ffi.Pointer<ffi.Int8> lpFormat,
ffi.Pointer<ffi.Int8> lpDateStr,
int cchDate,
) {
return (_GetDateFormatA ??=
_dylib.lookupFunction<_c_GetDateFormatA, _dart_GetDateFormatA>(
'GetDateFormatA'))(
Locale,
dwFlags,
lpDate,
lpFormat,
lpDateStr,
cchDate,
);
}