I am completely new to the Windows CE / Platform builder. I am trying to test
the API call CoFileTimeNow:
http://msdn.microsoft.com/en-us/library/aa908568.aspx
So far I have the following code in my Application project in my platform
builder:
#include "stdafx.h"
int main (int argc, TCHAR *argv [], TCHAR* envp [])
{
HRESULT CoFileTimeNow(
FILETIME* lpFileTime
);
printf("finished running the program\n");
return 0;
}
The above program compiles and run fines (without any errors) on my target
platform but I am not sure if it actually returned something from the
CoFileTimeNow API call. How do I verify it? Can I do some printf statement to
actually see the time value?
Thanks