Text only
|
Text with Images
The MASM Forum Archive 2004 to 2012
General Forums => The Campus => Topic started by: juancabot on October 14, 2005, 02:02:35 PM
Title:
Hello!! How do I capture system date and hour on MASM32??
Post by:
juancabot
on
October 14, 2005, 02:02:35 PM
Hello!!
How do I capture system date and hour on MASM32?? Which is the code??
Thanks!!
Title:
Re: Hello!! How do I capture system date and hour on MASM32??
Post by:
P1
on
October 14, 2005, 02:41:53 PM
Code
Select
Expand
LOCAL LocalTime:SYSTEMTIME
invoke GetLocalTime, ADDR LocalTime
You will need to lookup SYSTEMTIME structure and pick out what you want.
Regards, P1 :8)
Text only
|
Text with Images