summaryrefslogtreecommitdiffstats
path: root/loader/registry.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-11 14:33:57 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-11 14:33:57 +0000
commit0a3901e1aebd64e78ed6033ac90fdaffd77ce68e (patch)
treef8bf73cedd6cc89be679481aeca50dac14129c70 /loader/registry.h
parent19f5552dd17d66f305d6f70c0cd35e4abe373d8b (diff)
downloadmpv-0a3901e1aebd64e78ed6033ac90fdaffd77ce68e.tar.bz2
mpv-0a3901e1aebd64e78ed6033ac90fdaffd77ce68e.tar.xz
Remove extern "C" declarations from loader code.
Our loader code is not a general-purpose library and not used from C++. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30538 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/registry.h')
-rw-r--r--loader/registry.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/loader/registry.h b/loader/registry.h
index 4f0d09f53d..1b2a12afd7 100644
--- a/loader/registry.h
+++ b/loader/registry.h
@@ -13,10 +13,6 @@
* http://svn.mplayerhq.hu/mplayer/trunk/
*/
-#ifdef __cplusplus
-extern "C" {
-#endif
-
#include "wine/winbase.h"
void free_registry(void);
@@ -40,8 +36,5 @@ long __stdcall RegEnumKeyExA(HKEY hKey, DWORD dwIndex, LPSTR lpName, LPDWORD lpc
long __stdcall RegEnumValueA(HKEY hkey, DWORD index, LPSTR value, LPDWORD val_count,
LPDWORD reserved, LPDWORD type, LPBYTE data, LPDWORD count);
#endif
-#ifdef __cplusplus
-};
-#endif
#endif /* MPLAYER_REGISTRY_H */