diff src/common.h @ 16:c508ee15dfca

switch to automake/autoconf
author carl
date Sun, 19 Feb 2006 18:47:46 -0800
parents
children b2a7f2e0926a
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/common.h	Sun Feb 19 18:47:46 2006 -0800
@@ -0,0 +1,22 @@
+
+#ifndef __COMMON_H
+#define __COMMON_H
+
+#ifndef _WIN32
+  typedef unsigned int DWORD;
+  typedef unsigned short int WORD;
+  typedef unsigned char BYTE;
+  typedef unsigned int UINT32;
+
+# pragma pack (1)
+
+# ifndef FILETIME_DEFINED
+# define FILETIME_DEFINED
+  /*Win32 Filetime struct - copied from WINE*/
+  typedef struct {
+	  unsigned int dwLowDateTime;
+    unsigned int dwHighDateTime;
+  } FILETIME;
+# endif
+#endif // _WIN32
+#endif // __COMMON_H