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