imagehlp: Add two missing fields.
diff --git a/include/imagehlp.h b/include/imagehlp.h
index e37d921..89883d9 100644
--- a/include/imagehlp.h
+++ b/include/imagehlp.h
@@ -158,19 +158,22 @@
  * Structures
  */
 
-typedef struct _LOADED_IMAGE {
-  LPSTR                   ModuleName;
-  HANDLE                hFile;
-  PUCHAR                  MappedAddress;
-  PIMAGE_NT_HEADERS     FileHeader;
-  PIMAGE_SECTION_HEADER LastRvaSection;
-  ULONG                   NumberOfSections;
-  PIMAGE_SECTION_HEADER Sections;
-  ULONG                   Characteristics;
-  BOOLEAN                 fSystemImage;
-  BOOLEAN                 fDOSImage;
-  LIST_ENTRY            Links;
-  ULONG                   SizeOfImage;
+typedef struct _LOADED_IMAGE
+{
+    PSTR                        ModuleName;
+    HANDLE                      hFile;
+    PUCHAR                      MappedAddress;
+    PIMAGE_NT_HEADERS           FileHeader;
+    PIMAGE_SECTION_HEADER       LastRvaSection;
+    ULONG                       NumberOfSections;
+    PIMAGE_SECTION_HEADER       Sections;
+    ULONG                       Characteristics;
+    BOOLEAN                     fSystemImage;
+    BOOLEAN                     fDOSImage;
+    BOOLEAN                     fReadOnly;
+    UCHAR                       Version;
+    LIST_ENTRY                  Links;
+    ULONG                       SizeOfImage;
 } LOADED_IMAGE, *PLOADED_IMAGE;
 
 typedef struct _WIN_CERTIFICATE {