Add support for Windows FILETYPE time stamps.
This commit is contained in:
@@ -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 */
|
||||
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user