diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-31 16:15:50 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-31 16:15:50 +0000 |
commit | fba0b66ff9164bb0e386e47e6051d4ab29997fb5 (patch) | |
tree | e28a0e81b672caa7b78825d89c06f7b7940b23e7 /loader | |
parent | b8ab5e3f3626dc7f46f0392ccd537f538ac81fd1 (diff) |
Add explanatory comments to the #endif part of multiple inclusion guards.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25563 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r-- | loader/dmo/dmo_guids.h | 2 | ||||
-rw-r--r-- | loader/ext.h | 2 | ||||
-rw-r--r-- | loader/wine/objbase.h | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/loader/dmo/dmo_guids.h b/loader/dmo/dmo_guids.h index 56dffbe79b..db9cb179aa 100644 --- a/loader/dmo/dmo_guids.h +++ b/loader/dmo/dmo_guids.h @@ -32,4 +32,4 @@ extern const GUID DMOCATEGORY_AUDIO_NOISE_SUPPRESS; extern const GUID DMOCATEGORY_AGC; */ -#endif +#endif /* DMO_GUIDS_H */ diff --git a/loader/ext.h b/loader/ext.h index c53fd5669f..42eb9b2c6a 100644 --- a/loader/ext.h +++ b/loader/ext.h @@ -17,4 +17,4 @@ extern int FILE_munmap( LPVOID start, DWORD size_high, DWORD size_low ); extern int wcsnicmp(const unsigned short* s1, const unsigned short* s2, int n); extern int __vprintf( const char *format, ... ); -#endif +#endif /* loader_ext_h */ diff --git a/loader/wine/objbase.h b/loader/wine/objbase.h index 41ec88247c..784a9999e6 100644 --- a/loader/wine/objbase.h +++ b/loader/wine/objbase.h @@ -16,4 +16,5 @@ typedef enum tagCOINIT { HRESULT STDCALL CoInitialize(LPVOID pvReserved); HRESULT STDCALL CoInitializeEx(LPVOID pvReserved, DWORD dwCoinit); void STDCALL CoUninitialize(void); -#endif + +#endif /* WINE_OBJBASE_H */ |