diff loader/dshow/graph.h @ 30830:a25ab9c878f9

Style changes as requested by Diego.
author sesse
date Tue, 09 Mar 2010 12:40:14 +0000
parents 5f145a3b3832
children 9f57c99fce86
line wrap: on
line diff
--- a/loader/dshow/graph.h	Tue Mar 09 12:01:42 2010 +0000
+++ b/loader/dshow/graph.h	Tue Mar 09 12:40:14 2010 +0000
@@ -6,31 +6,30 @@
 
 typedef struct FilterGraph FilterGraph;
 
-struct FilterGraph
-{
+struct FilterGraph {
     IFilterGraph_vt* vt;
     DECLARE_IUNKNOWN();
     GUID interfaces[2];
 
-    HRESULT STDCALL ( *AddFilter )(FilterGraph* This,
-                                   /* [in] */ IBaseFilter* pFilter,
-                                   /* [string][in] */ unsigned short* pName);
-    HRESULT STDCALL ( *RemoveFilter )(FilterGraph* This,
-                                      /* [in] */ IBaseFilter* pFilter);
-    HRESULT STDCALL ( *EnumFilters )(FilterGraph* This,
-                                     /* [out] */ IEnumFilters** ppEnum);
-    HRESULT STDCALL ( *FindFilterByName )(FilterGraph* This,
-                                          /* [string][in] */ unsigned short* pName,
-                                          /* [out] */ IBaseFilter** ppFilter);
-    HRESULT STDCALL ( *ConnectDirect )(FilterGraph* This,
-                                       /* [in] */ IPin* ppinOut,
-                                       /* [in] */ IPin* ppinIn,
-                                       /* [in] */ const AM_MEDIA_TYPE* pmt);
-    HRESULT STDCALL ( *Reconnect )(FilterGraph* This,
-                                   /* [in] */ IPin* ppin);
-    HRESULT STDCALL ( *Disconnect )(FilterGraph* This,
-                                    /* [in] */ IPin* ppin);
-    HRESULT STDCALL ( *SetDefaultSyncSource )(FilterGraph* This);
+    HRESULT STDCALL (*AddFilter)(FilterGraph* This,
+                                 /* [in] */ IBaseFilter* pFilter,
+                                 /* [string][in] */ unsigned short* pName);
+    HRESULT STDCALL (*RemoveFilter)(FilterGraph* This,
+                                    /* [in] */ IBaseFilter* pFilter);
+    HRESULT STDCALL (*EnumFilters)(FilterGraph* This,
+                                   /* [out] */ IEnumFilters** ppEnum);
+    HRESULT STDCALL (*FindFilterByName)(FilterGraph* This,
+                                        /* [string][in] */ unsigned short* pName,
+                                        /* [out] */ IBaseFilter** ppFilter);
+    HRESULT STDCALL (*ConnectDirect)(FilterGraph* This,
+                                     /* [in] */ IPin* ppinOut,
+                                     /* [in] */ IPin* ppinIn,
+                                     /* [in] */ const AM_MEDIA_TYPE* pmt);
+    HRESULT STDCALL (*Reconnect)(FilterGraph* This,
+                                 /* [in] */ IPin* ppin);
+    HRESULT STDCALL (*Disconnect)(FilterGraph* This,
+                                  /* [in] */ IPin* ppin);
+    HRESULT STDCALL (*SetDefaultSyncSource)(FilterGraph* This);
 };
 
 FilterGraph* FilterGraphCreate(void);