EnumTimeFormats

EnumTimeFormats

VB声明

Declare Function EnumTimeFormats Lib "KERNEL32" Alias "EnumTimeFormats" (ByVal lpTimeFmtEnumProc As Long, ByVal Locale As Long, ByVal dwFlags As Long) As Long

说明

枚举一个指定的地方适用的时间格式

返回值

Long,TRUE(非零)表示成功,零表示失败。会将GetLastError设置设为下述某个常数:ERROR_BADDB,ERROR_INVALID_FLAGS,ERROR_INVALID_PARAMETER

参数表

参数

类型及说明

lpTimeFmtEnumProc

Long,指向为每种时间格式都调用的一个函数的指针。用Addressof运算符得到位于一个标准模块中的函数的地址

Locale

Long,用于决定具体枚举格式的“地方”设置

dwFlags

Long,未用,设为零

Top