diff loader/qtx/qtxload.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 96ce0ca753ff
children da85ae10987e
line wrap: on
line diff
--- a/loader/qtx/qtxload.c	Sun Jan 20 17:03:35 2008 +0000
+++ b/loader/qtx/qtxload.c	Sun Jan 20 17:16:39 2008 +0000
@@ -53,8 +53,8 @@
 //    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);