From b346d0f248381c54da93521fbd68688e43954bd6 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Wed, 23 Aug 2006 16:12:47 +0900 Subject: [PATCH] windef.h: Add a definition for FILETIME. --- include/windef.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/include/windef.h b/include/windef.h index d9c03312569..850c02688af 100644 --- a/include/windef.h +++ b/include/windef.h @@ -355,6 +355,17 @@ typedef struct tagPOINTS #endif } POINTS, *PPOINTS, *LPPOINTS; +typedef struct _FILETIME { +#ifdef WORDS_BIGENDIAN + DWORD dwHighDateTime; + DWORD dwLowDateTime; +#else + DWORD dwLowDateTime; + DWORD dwHighDateTime; +#endif +} FILETIME, *PFILETIME, *LPFILETIME; +#define _FILETIME_ + /* The RECT structure */ typedef struct tagRECT {