FileTimeToSystemTime |
VB声明 |
|
Declare Function FileTimeToSystemTime Lib "kernel32" Alias "FileTimeToSystemTime" (lpFileTime As FILETIME, lpSystemTime As SYSTEMTIME) As Long |
|
说明 |
|
根据一个FILETIME结构的内容,装载一个SYSTEMTIME结构 |
|
返回值 |
|
Long,非零表示成功,零表示失败。会设置GetLastError |
|
参数表 |
|
参数 |
类型及说明 |
lpFileTime |
FILETIME,包含了文件时间的一个结构 |
lpSystemTime |
SYSTEMTIME,用于装载系统时间信息的一个结构 |
Top |