EnumTimeFormatsA method

int EnumTimeFormatsA(
  1. Pointer<NativeFunction<TIMEFMT_ENUMPROCA>> lpTimeFmtEnumProc,
  2. int Locale,
  3. int dwFlags
)

Implementation

int EnumTimeFormatsA(
  ffi.Pointer<ffi.NativeFunction<TIMEFMT_ENUMPROCA>> lpTimeFmtEnumProc,
  int Locale,
  int dwFlags,
) {
  return (_EnumTimeFormatsA ??=
      _dylib.lookupFunction<_c_EnumTimeFormatsA, _dart_EnumTimeFormatsA>(
          'EnumTimeFormatsA'))(
    lpTimeFmtEnumProc,
    Locale,
    dwFlags,
  );
}