diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-12-03 23:01:03 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-12-03 23:01:03 +0000 |
commit | 0864f92e7a55b20a21fc2f5eaf9e72cb799a6f7d (patch) | |
tree | acd33d7cbfa6a967626858375daa802c652dfe3f /loader/wine/debugtools.h | |
parent | d7a5babef76ba9324f303535745af21461bdcc84 (diff) |
Get rid of pointless 'extern' keywords.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28085 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/wine/debugtools.h')
-rw-r--r-- | loader/wine/debugtools.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/loader/wine/debugtools.h b/loader/wine/debugtools.h index d9eab67902..aaefdb7dd6 100644 --- a/loader/wine/debugtools.h +++ b/loader/wine/debugtools.h @@ -37,17 +37,17 @@ enum DEBUG_CLASS { DBCL_FIXME, DBCL_ERR, DBCL_WARN, DBCL_TRACE, DBCL_COUNT }; /* These function return a printable version of a string, including quotes. The string will be valid for some time, but not indefinitely as strings are re-used. */ -extern LPCSTR debugstr_an (LPCSTR s, int n); -extern LPCSTR debugstr_wn (LPCWSTR s, int n); -extern LPCSTR debugres_a (LPCSTR res); -extern LPCSTR debugres_w (LPCWSTR res); -extern LPCSTR debugstr_guid( const struct GUID *id ); -extern LPCSTR debugstr_hex_dump (const void *ptr, int len); -extern int dbg_header_err( const char *dbg_channel, const char *func ); -extern int dbg_header_warn( const char *dbg_channel, const char *func ); -extern int dbg_header_fixme( const char *dbg_channel, const char *func ); -extern int dbg_header_trace( const char *dbg_channel, const char *func ); -extern int dbg_vprintf( const char *format, va_list args ); +LPCSTR debugstr_an( LPCSTR s, int n ); +LPCSTR debugstr_wn( LPCWSTR s, int n ); +LPCSTR debugres_a( LPCSTR res ); +LPCSTR debugres_w( LPCWSTR res ); +LPCSTR debugstr_guid( const struct GUID *id ); +LPCSTR debugstr_hex_dump( const void *ptr, int len ); +int dbg_header_err( const char *dbg_channel, const char *func ); +int dbg_header_warn( const char *dbg_channel, const char *func ); +int dbg_header_fixme( const char *dbg_channel, const char *func ); +int dbg_header_trace( const char *dbg_channel, const char *func ); +int dbg_vprintf( const char *format, va_list args ); static inline LPCSTR debugstr_a( LPCSTR s ) { return debugstr_an( s, 80 ); } static inline LPCSTR debugstr_w( LPCWSTR s ) { return debugstr_wn( s, 80 ); } |