词条 | GetSystemTime |
释义 | VB声明Declare Sub GetSystemTime Lib "kernel32" Alias "GetSystemTime" (lpSystemTime As SYSTEMTIME) 说明 在一个SYSTEMTIME中载入当前系统时间,这个时间采用的是“协同世界时间”(即UTC,也叫做GMT)格式 参数表 参数 类型及说明 lpSystemTime SYSTEMTIME,随同当前时间载入的结构 Ada声明type WORD is mod 2**16; -- SYSTEMTIME 结构 type SYSTEMTIME is record year : word; -- 年 month : word; -- 月 dayofweek : word; -- 星期,0=星期日,1=星期一 day : word; -- 天 hour : word; -- 时 minute : word; -- 分 second : word; -- 秒 Milliseconds : word; -- 毫秒 end record; type LPSYSTEMTIME is access SYSTEMTIME; procedure GetSystemTime(SYSTIME:LPSYSTEMTIME); function GetSystemTime(SYSTIME:LPSYSTEMTIME) return integer; pragma import(stdcall,GetSystemTime,"GetSystemTime"); 使用注意: 1、参数SYSTIME必须首先分配内存空间,否则引起PROGRAM_ERROR 。 2、该函数获取格林威治标准时间。 |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。