summaryrefslogtreecommitdiffstats
path: root/loader/module.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-20 17:16:39 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-20 17:16:39 +0000
commit3bbe897e247d128cf63f1fad665fdfc086bab5ab (patch)
tree567f6ff88d6dfa186a9184676793512b85743c22 /loader/module.c
parent8fb418635ee3511971ab3bc923b2f95228669906 (diff)
downloadmpv-3bbe897e247d128cf63f1fad665fdfc086bab5ab.tar.bz2
mpv-3bbe897e247d128cf63f1fad665fdfc086bab5ab.tar.xz
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
capital letter are reserved for the system, those starting with _ are reserved at the file level. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25822 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/module.c')
-rw-r--r--loader/module.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/loader/module.c b/loader/module.c
index 4f2acf4a66..1be8892da4 100644
--- a/loader/module.c
+++ b/loader/module.c
@@ -704,8 +704,8 @@ return "???";
static int c_level=0;
-static int dump_component(char* name,int type,void* _orig, ComponentParameters *params,void** glob){
- int ( *orig)(ComponentParameters *params, void** glob) = _orig;
+static int dump_component(char* name, int type, void* orig, ComponentParameters *params,void** glob){
+ int ( *orig)(ComponentParameters *params, void** glob) = orig;
int ret,i;
fprintf(stderr,"%*sComponentCall: %s flags=0x%X size=%d what=0x%X %s\n",3*c_level,"",name,params->flags, params->paramSize, params->what, component_func(params->what));
@@ -1051,8 +1051,8 @@ FARPROC MODULE_GetProcAddress(
#endif
if(!strcmp(function,"theQuickTimeDispatcher")
-// || !strcmp(function,"_CallComponentFunctionWithStorage")
-// || !strcmp(function,"_CallComponent")
+// || !strcmp(function,"CallComponentFunctionWithStorage")
+// || !strcmp(function,"CallComponent")
){
fprintf(stderr,"theQuickTimeDispatcher catched -> %p\n",retproc);
report_entry = report_func;