Get rid of no longer needed WINE_PACKED define.

diff --git a/include/module.h b/include/module.h
index eea76fb..1b139a7 100644
--- a/include/module.h
+++ b/include/module.h
@@ -29,6 +29,8 @@
 #include <wine/winbase16.h>
 #include <winternl.h>
 
+#include <pshpack1.h>
+
   /* In-memory module structure. See 'Windows Internals' p. 219 */
 typedef struct _NE_MODULE
 {
@@ -77,7 +79,7 @@
     BYTE type;
     BYTE flags;
     BYTE segnum;
-    WORD offs WINE_PACKED;
+    WORD offs;
 } ET_ENTRY;
 
 typedef struct {
@@ -117,6 +119,8 @@
 
 extern THHOOK *pThhook;
 
+#include <poppack.h>
+
 /* Resource types */
 
 #define NE_SEG_TABLE(pModule) \