diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-20 17:16:39 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-20 17:16:39 +0000 |
commit | 3bbe897e247d128cf63f1fad665fdfc086bab5ab (patch) | |
tree | 567f6ff88d6dfa186a9184676793512b85743c22 /loader/qtx | |
parent | 8fb418635ee3511971ab3bc923b2f95228669906 (diff) |
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/qtx')
-rw-r--r-- | loader/qtx/qtxload.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/qtx/qtxload.c b/loader/qtx/qtxload.c index 265ad916e7..d17c3138d9 100644 --- a/loader/qtx/qtxload.c +++ b/loader/qtx/qtxload.c @@ -53,8 +53,8 @@ int main(int argc, char *argv[]){ // handler = LoadLibraryA("/root/.wine/fake_windows/Windows/System/QuickTime.qts"); handler = LoadLibraryA("QuickTime.qts"); theqtdp = GetProcAddress(handler, "theQuickTimeDispatcher"); - compcall = GetProcAddress(handler, "_CallComponent"); - compcallws = GetProcAddress(handler, "_CallComponentFunctionWithStorage"); + compcall = GetProcAddress(handler, "CallComponent"); + compcallws = GetProcAddress(handler, "CallComponentFunctionWithStorage"); InitializeQTML = 0x6299e590;//GetProcAddress(handler, "InitializeQTML"); InitializeQTML(6+16); |