Code: Select all
#include once "windows.bi"
Dim As SystemTime TimeNow
Dim As LPFILETIME ptrFT
GetSystemTime( @TimeNow )
Print SystemTimeToFileTime( ByVal @TimeNow, ByVal ptrFT )
Print "Here"
Sleep
I don't get to see "Here" - the console opens and then closes. SystemTimeToFileTime returns a value but I don't even get to see that.
This is what we have from winbase.bi:
Code: Select all
SystemTimeToFileTime(byval lpSystemTime as const SYSTEMTIME ptr, byval lpFileTime as LPFILETIME) as WINBOOL
Any ideas, folks.