comparison 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
comparison
equal deleted inserted replaced
25793:ac1a2c121d3a 25794:2c8cdb9123b8
51 Setup_LDT_Keeper(); 51 Setup_LDT_Keeper();
52 printf("loading qts\n"); 52 printf("loading qts\n");
53 // handler = LoadLibraryA("/root/.wine/fake_windows/Windows/System/QuickTime.qts"); 53 // handler = LoadLibraryA("/root/.wine/fake_windows/Windows/System/QuickTime.qts");
54 handler = LoadLibraryA("QuickTime.qts"); 54 handler = LoadLibraryA("QuickTime.qts");
55 theqtdp = GetProcAddress(handler, "theQuickTimeDispatcher"); 55 theqtdp = GetProcAddress(handler, "theQuickTimeDispatcher");
56 compcall = GetProcAddress(handler, "_CallComponent"); 56 compcall = GetProcAddress(handler, "CallComponent");
57 compcallws = GetProcAddress(handler, "_CallComponentFunctionWithStorage"); 57 compcallws = GetProcAddress(handler, "CallComponentFunctionWithStorage");
58 58
59 InitializeQTML = 0x6299e590;//GetProcAddress(handler, "InitializeQTML"); 59 InitializeQTML = 0x6299e590;//GetProcAddress(handler, "InitializeQTML");
60 InitializeQTML(6+16); 60 InitializeQTML(6+16);
61 61
62 printf("loading svq3\n"); 62 printf("loading svq3\n");