Mercurial > mplayer.hg
diff loader/module.c @ 25794:2c8cdb9123b8
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.
| author | diego |
|---|---|
| date | Sun, 20 Jan 2008 17:16:39 +0000 |
| parents | 0cc73d213160 |
| children | c8c9b4e89fb7 |
line wrap: on
line diff
--- a/loader/module.c Sun Jan 20 17:03:35 2008 +0000 +++ b/loader/module.c Sun Jan 20 17:16:39 2008 +0000 @@ -704,8 +704,8 @@ 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 @@ #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;
