]> git.sesse.net Git - vlc/blobdiff - libs/loader/wine/module.h
Removes trailing spaces. Removes tabs.
[vlc] / libs / loader / wine / module.h
index 6f6b31a0a7a65eed0e36f1eb3abc0d445530b07d..0c0d90db111a28ca5d21f0b93103cbdf7adff177 100644 (file)
@@ -48,7 +48,7 @@ typedef struct
     FARPROC16 BootApp;       /* startup procedure */
     FARPROC16 LoadAppSeg;    /* procedure to load a segment */
     FARPROC16 reserved2;
-    FARPROC16 MyAlloc;       /* memory allocation procedure, 
+    FARPROC16 MyAlloc;       /* memory allocation procedure,
                               * wine must write this field */
     FARPROC16 EntryAddrProc;
     FARPROC16 ExitProc;      /* exit procedure */
@@ -65,7 +65,7 @@ typedef struct
     SEGPTR    reserved WINE_PACKED;
 } LOADPARAMS16;
 
-typedef struct 
+typedef struct
 {
     LPSTR lpEnvAddress;
     LPSTR lpCmdLine;
@@ -77,33 +77,33 @@ typedef struct
 
 /* internal representation of 32bit modules. per process. */
 typedef enum {
-       MODULE32_PE = 1,
-       MODULE32_ELF,
-       MODULE32_ELFDLL
+    MODULE32_PE = 1,
+    MODULE32_ELF,
+    MODULE32_ELFDLL
 } MODULE32_TYPE;
 
 typedef struct _wine_modref
 {
-       struct _wine_modref     *next;
-       struct _wine_modref     *prev;
-       MODULE32_TYPE           type;
-       union {
-               PE_MODREF       pe;
-               ELF_MODREF      elf;
-       } binfmt;
-
-       HMODULE                 module;
-
-       int                     nDeps;
-       struct _wine_modref     **deps;
-
-       int                     flags;
-       int                     refCount;
-
-       char                    *filename;
-       char                    *modname;
-       char                    *short_filename;
-       char                    *short_modname;
+    struct _wine_modref    *next;
+    struct _wine_modref    *prev;
+    MODULE32_TYPE        type;
+    union {
+        PE_MODREF    pe;
+        ELF_MODREF    elf;
+    } binfmt;
+
+    HMODULE            module;
+
+    int            nDeps;
+    struct _wine_modref    **deps;
+
+    int            flags;
+    int            refCount;
+
+    char            *filename;
+    char            *modname;
+    char            *short_filename;
+    char            *short_modname;
 } WINE_MODREF;
 
 #define WINE_MODREF_INTERNAL              0x00000001
@@ -144,6 +144,6 @@ extern WINE_MODREF *MODULE32_LookupHMODULE( HMODULE hModule );
 extern WINE_MODREF *MODULE_FindModule( LPCSTR path );
 
 /* resource.c */
-extern INT       WINAPI AccessResource(HMODULE,HRSRC); 
+extern INT       WINAPI AccessResource(HMODULE,HRSRC);
 
 #endif  /* __WINE_MODULE_H */