GetMseconds PROC
Returns the number of milliseconds that have
elapsed since midnight.
Resolution is 10ms under Windows NT/ 2000/ XP;
and is 55ms (average) under Windows 98/ ME.
Call args: None Return arg: EAX = ((hours*3600)+ (minutes*60)+ (seconds))*1000 + milliseconds Example: .data msec DWORD ? .code call GetMseconds mov msec,eax ;save
Converted from CHM to HTML with chm2web Pro 2.85 (unicode) |