- Implemented proper ("real", compressed) Win16 entry tables.
- Fixed MyAlloc (AKA NE_AllocateSegment).
- Implemented PatchCodeHandle16.

diff --git a/include/module.h b/include/module.h
index 4ae9d7b..ff320b8 100644
--- a/include/module.h
+++ b/include/module.h
@@ -56,6 +56,20 @@
 } NE_MODULE;
 
 
+typedef struct {
+    BYTE type;
+    BYTE flags;
+    BYTE segnum;
+    WORD offs WINE_PACKED;
+} ET_ENTRY;
+
+typedef struct {
+    WORD first; /* ordinal */
+    WORD last; /* ordinal */
+    WORD next; /* bundle */
+} ET_BUNDLE;
+
+
   /* In-memory segment table */
 typedef struct
 {