Just wondering if there was a reason for some of the file time APIs to have been left out of the win32api.inc? I reaslise that sometimes these go out of date etc but I thought I'd ask
And the struct (Type)
Thanks
------------------
Paul Dwyer
Network Engineer
Aussie in Tokyo
(Paul282 at VB-World)
[This message has been edited by Paul Dwyer (edited March 05, 2001).]
Code:
BOOL GetFileTime( HANDLE hFile, // identifies the file LPFILETIME lpCreationTime, // address of creation time LPFILETIME lpLastAccessTime, // address of last access time LPFILETIME lpLastWriteTime // address of last write time ); BOOL SetFileTime( HANDLE hFile, // identifies the file CONST FILETIME *lpCreationTime, // time the file was created CONST FILETIME *lpLastAccessTime, // time the file was last accessed CONST FILETIME *lpLastWriteTime // time the file was last written );
Code:
typedef struct _FILETIME { // ft DWORD dwLowDateTime; DWORD dwHighDateTime; } FILETIME;
Thanks
------------------
Paul Dwyer
Network Engineer
Aussie in Tokyo
(Paul282 at VB-World)
[This message has been edited by Paul Dwyer (edited March 05, 2001).]
Comment