Difference between revisions of "GetTimeSecs"

From UODemo Wiki
Jump to: navigation, search
(Created page with 'integer '''getTimeSecs'''(void); This function will the current system time (server time) in milliseconds. This is implemented by using the ''timeGetTime'' Windows Multimedia fu…')
 
m
Line 1: Line 1:
 
integer '''getTimeSecs'''(void);
 
integer '''getTimeSecs'''(void);
  
This function will the current system time (server time) in milliseconds. This is implemented by using the ''timeGetTime'' Windows Multimedia function, therefor the system time is the time elapsed since Windows was started. Please refer to your Windows (MSDN) documentation for more details and remarks.
+
This function will return the current system time (server time) in milliseconds. This is implemented by using the ''timeGetTime'' Windows Multimedia function, therefor the return time is the time elapsed since Windows was started. Please refer to your Windows (MSDN) documentation for more details and remarks.
  
  
 
Return to the [[Command List]].
 
Return to the [[Command List]].

Revision as of 20:49, 14 March 2010

integer getTimeSecs(void);

This function will return the current system time (server time) in milliseconds. This is implemented by using the timeGetTime Windows Multimedia function, therefor the return time is the time elapsed since Windows was started. Please refer to your Windows (MSDN) documentation for more details and remarks.


Return to the Command List.