Add support for Windows FILETYPE time stamps.

This commit is contained in:
W. Eric Norum
2002-09-04 22:04:01 +00:00
parent b3104bbc2b
commit 5962c69c12
2 changed files with 10 additions and 2 deletions
+8
View File
@@ -13,7 +13,15 @@
#ifndef osdTimeh
#define osdTimeh
#include <sys/types.h>
#include <sys/time.h>
/* from win32 */
typedef u_int32_t DWORD;
typedef struct _FILETIME {
DWORD dwLowDateTime; /* low 32 bits */
DWORD dwHighDateTime; /* high 32 bits */
} FILETIME;
#endif /* ifndef osdTimeh */
+2 -2
View File
@@ -16,10 +16,10 @@
#ifndef osdTimeh
#define osdTimeh
#include <inttypes.h>
#include <sys/types.h>
/* from win32 */
typedef uint32_t DWORD;
typedef u_int32_t DWORD;
typedef struct _FILETIME {
DWORD dwLowDateTime; /* low 32 bits */
DWORD dwHighDateTime; /* high 32 bits */