comparison loader/wine/module.h @ 25794:2c8cdb9123b8

Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a capital letter are reserved for the system, those starting with _ are reserved at the file level.
author diego
date Sun, 20 Jan 2008 17:16:39 +0000
parents c98c9e7f3bd0
children a8ea87c71d18
comparison
equal deleted inserted replaced
25793:ac1a2c121d3a 25794:2c8cdb9123b8
80 MODULE32_PE = 1, 80 MODULE32_PE = 1,
81 MODULE32_ELF, 81 MODULE32_ELF,
82 MODULE32_ELFDLL 82 MODULE32_ELFDLL
83 } MODULE32_TYPE; 83 } MODULE32_TYPE;
84 84
85 typedef struct _wine_modref 85 typedef struct wine_modref
86 { 86 {
87 struct _wine_modref *next; 87 struct wine_modref *next;
88 struct _wine_modref *prev; 88 struct wine_modref *prev;
89 MODULE32_TYPE type; 89 MODULE32_TYPE type;
90 union { 90 union {
91 PE_MODREF pe; 91 PE_MODREF pe;
92 ELF_MODREF elf; 92 ELF_MODREF elf;
93 } binfmt; 93 } binfmt;
94 94
95 HMODULE module; 95 HMODULE module;
96 96
97 int nDeps; 97 int nDeps;
98 struct _wine_modref **deps; 98 struct wine_modref **deps;
99 99
100 int flags; 100 int flags;
101 int refCount; 101 int refCount;
102 102
103 char *filename; 103 char *filename;