Vitaliy Margolen : d3d8: Remove no longer used imports.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Sep 26 15:04:45 CDT 2006


Module: wine
Branch: master
Commit: 9e0426538a6693d1aaa9d7708f5e0c47ac475178
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=9e0426538a6693d1aaa9d7708f5e0c47ac475178

Author: Vitaliy Margolen <wine-patch at kievinfo.com>
Date:   Tue Sep 26 07:25:11 2006 -0600

d3d8: Remove no longer used imports.

---

 dlls/d3d8/d3d8_main.c |   18 +++---------------
 1 files changed, 3 insertions(+), 15 deletions(-)

diff --git a/dlls/d3d8/d3d8_main.c b/dlls/d3d8/d3d8_main.c
index 0f6bc12..9e3c48b 100644
--- a/dlls/d3d8/d3d8_main.c
+++ b/dlls/d3d8/d3d8_main.c
@@ -26,10 +26,6 @@ #include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
 
-void (*wine_tsx11_lock_ptr)(void) = NULL;
-void (*wine_tsx11_unlock_ptr)(void) = NULL;
-
-
 HRESULT WINAPI D3D8GetSWInfo(void) {
     FIXME("(void): stub\n");
     return 0;
@@ -52,20 +48,12 @@ IDirect3D8* WINAPI Direct3DCreate8(UINT 
 }
 
 /* At process attach */
-BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv) {
+BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
+{
     TRACE("fdwReason=%ld\n", fdwReason);
-    if (fdwReason == DLL_PROCESS_ATTACH) {
-        HMODULE mod;
-
+    if (fdwReason == DLL_PROCESS_ATTACH)
         DisableThreadLibraryCalls(hInstDLL);
 
-        mod = GetModuleHandleA( "winex11.drv" );
-        if (mod)
-        {
-            wine_tsx11_lock_ptr   = (void*) GetProcAddress(mod, "wine_tsx11_lock");
-            wine_tsx11_unlock_ptr = (void*) GetProcAddress(mod, "wine_tsx11_unlock");
-        }
-    }
     return TRUE;
 }
 




More information about the wine-cvs mailing list