]> git.sesse.net Git - vlc/blobdiff - libs/loader/wineacm.h
Removes trailing spaces. Removes tabs.
[vlc] / libs / loader / wineacm.h
index 959cb3d76fc0f17f58549fede3d637889745dd24..c41f0b8a4828bf9f46b09499f0747271dd2e2419 100644 (file)
@@ -19,36 +19,36 @@ typedef struct _WINE_ACMDRIVER   *PWINE_ACMDRIVER;
 
 typedef struct _WINE_ACMOBJ
 {
-  PWINE_ACMDRIVERID    pACMDriverID;
+  PWINE_ACMDRIVERID    pACMDriverID;
 } WINE_ACMOBJ, *PWINE_ACMOBJ;
 
 typedef struct _WINE_ACMDRIVER
 {
-    WINE_ACMOBJ                obj;
-    HDRVR                      hDrvr;
-    DRIVERPROC         pfnDriverProc;
-    PWINE_ACMDRIVER    pNextACMDriver;
+    WINE_ACMOBJ        obj;
+    HDRVR              hDrvr;
+    DRIVERPROC        pfnDriverProc;
+    PWINE_ACMDRIVER    pNextACMDriver;
     int                 iUsage;
 } WINE_ACMDRIVER;
 
 typedef struct _WINE_ACMSTREAM
 {
-    WINE_ACMOBJ                obj;
-    PWINE_ACMDRIVER    pDrv;
+    WINE_ACMOBJ        obj;
+    PWINE_ACMDRIVER    pDrv;
     ACMDRVSTREAMINSTANCE drvInst;
-    HACMDRIVER         hAcmDriver;
+    HACMDRIVER        hAcmDriver;
 } WINE_ACMSTREAM, *PWINE_ACMSTREAM;
 
 typedef struct _WINE_ACMDRIVERID
 {
     LPSTR               pszFileName;
-    WORD               wFormatTag;
-    HINSTANCE          hInstModule;          /* NULL if global */
-    DWORD              dwProcessID;          /* ID of process which installed a local driver */
+    WORD        wFormatTag;
+    HINSTANCE        hInstModule;          /* NULL if global */
+    DWORD        dwProcessID;          /* ID of process which installed a local driver */
     WIN_BOOL                bEnabled;
     PWINE_ACMDRIVER     pACMDriverList;
     PWINE_ACMDRIVERID   pNextACMDriverID;
-    PWINE_ACMDRIVERID  pPrevACMDriverID;
+    PWINE_ACMDRIVERID    pPrevACMDriverID;
 } WINE_ACMDRIVERID;
 
 /* From internal.c */
@@ -57,8 +57,8 @@ extern PWINE_ACMDRIVERID MSACM_pFirstACMDriverID;
 extern PWINE_ACMDRIVERID MSACM_pLastACMDriverID;
 
 PWINE_ACMDRIVERID MSACM_RegisterDriver(const char* pszFileName,
-                                      WORD wFormatTag,
-                                      HINSTANCE hinstModule);
+                       WORD wFormatTag,
+                       HINSTANCE hinstModule);
 PWINE_ACMDRIVERID MSACM_UnregisterDriver(PWINE_ACMDRIVERID p);
 void MSACM_UnregisterAllDrivers(void);
 PWINE_ACMDRIVERID MSACM_GetDriverID(HACMDRIVERID hDriverID);