kernel32
.
If you want to get the current system date and time expressed in Coordinated Universal Time (UTC) format, use GetSystemTime instead.
Retrieves system timing information. On a multiprocessor system, the values returned are the sum of the designated times across all processors.
4/29/2009 1:27:49 PM - -64.16.11.250
.
static extern bool GetSystemTimes (
.
GetSystemTimes(out idleTime, out kernelTime, out userTime);
.
.
The GetSystemTimeAsFileTime API
1/4/2013 7:55:39 AM - -99.179.149.112
.
static extern void GetSystemTimeAsFileTime(out FILETIME
.
public static extern void GetSystemTimeAsFileTime(out FILETIME lpSystemTimeAsFileTime);
.
GetSystemTimeAsFileTime(out myTime);
.
.
static extern bool GetSystemTimes (
.
GetSystemTimes(out idleTime, out kernelTime, out userTime);
.
.
public extern static void GetSystemTime(ref SYSTEMTIME lpSystemTime);
.
GetSystemTime(ref st);
winmm
.
static extern UInt32 timeGetSystemTime( ref MmTime mmTime, UInt32 sizeMmTime );
.
Declare Function timeGetSystemTime Lib "winmm.dll" (TODO) As TODO
.