[4/4] d3dcompiler_33: Stub dll.

Matteo Bruni matteo.mystral at gmail.com
Tue Aug 17 11:57:10 CDT 2010


-------------- next part --------------
From 6da0cd85971cd41b96108d5702532e89ae695d75 Mon Sep 17 00:00:00 2001
From: Matteo Bruni <matteo.mystral at gmail.com>
Date: Thu, 29 Jul 2010 01:53:54 +0200
Subject: d3dcompiler_33: Stub dll.

---
 dlls/d3dcompiler_33/Makefile.in           |   12 ++++++++
 dlls/d3dcompiler_33/d3dcompiler_33.spec   |   10 ++++++
 dlls/d3dcompiler_33/d3dcompiler_33_main.c |   44 +++++++++++++++++++++++++++++
 dlls/d3dcompiler_33/version.rc            |   27 +++++++++++++++++
 4 files changed, 93 insertions(+), 0 deletions(-)
 create mode 100644 dlls/d3dcompiler_33/Makefile.in
 create mode 100644 dlls/d3dcompiler_33/d3dcompiler_33.spec
 create mode 100644 dlls/d3dcompiler_33/d3dcompiler_33_main.c
 create mode 100644 dlls/d3dcompiler_33/version.rc

diff --git a/dlls/d3dcompiler_33/Makefile.in b/dlls/d3dcompiler_33/Makefile.in
new file mode 100644
index 0000000..2674dd8
--- /dev/null
+++ b/dlls/d3dcompiler_33/Makefile.in
@@ -0,0 +1,12 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR    = @srcdir@
+VPATH     = @srcdir@
+MODULE    = d3dcompiler_33.dll
+
+C_SRCS = \
+	d3dcompiler_33_main.c
+
+RC_SRCS = version.rc
+
+ at MAKE_DLL_RULES@
diff --git a/dlls/d3dcompiler_33/d3dcompiler_33.spec b/dlls/d3dcompiler_33/d3dcompiler_33.spec
new file mode 100644
index 0000000..5e20e1a
--- /dev/null
+++ b/dlls/d3dcompiler_33/d3dcompiler_33.spec
@@ -0,0 +1,10 @@
+@ stdcall D3DCompileFromMemory(ptr long str ptr ptr str str long long ptr ptr) d3dcompiler_43.D3DCompile
+@ stdcall D3DDisassembleCode(ptr long long ptr ptr) d3dcompiler_43.D3DDisassemble
+@ stdcall D3DDisassembleEffect(ptr long ptr) d3dcompiler_43.D3DDisassemble10Effect
+@ stdcall D3DGetCodeDebugInfo(ptr long ptr) d3dcompiler_43.D3DGetDebugInfo
+@ stdcall D3DGetInputAndOutputSignatureBlob(ptr long ptr) d3dcompiler_43.D3DGetInputAndOutputSignatureBlob
+@ stdcall D3DGetInputSignatureBlob(ptr long ptr) d3dcompiler_43.D3DGetInputSignatureBlob
+@ stdcall D3DGetOutputSignatureBlob(ptr long ptr) d3dcompiler_43.D3DGetOutputSignatureBlob
+@ stdcall D3DPreprocessFromMemory(ptr long str ptr ptr ptr ptr) d3dcompiler_43.D3DPreprocess
+@ stdcall D3DReflectCode(ptr long ptr ptr) d3dcompiler_43.D3DReflect
+@ stub DebugSetMute
diff --git a/dlls/d3dcompiler_33/d3dcompiler_33_main.c b/dlls/d3dcompiler_33/d3dcompiler_33_main.c
new file mode 100644
index 0000000..c4745ee
--- /dev/null
+++ b/dlls/d3dcompiler_33/d3dcompiler_33_main.c
@@ -0,0 +1,44 @@
+/*
+ * Direct3D shader compiler main file
+ *
+ * Copyright 2010 Matteo Bruni for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ *
+ */
+
+#include "config.h"
+#include "wine/port.h"
+
+#include <stdarg.h>
+
+#include "windef.h"
+#include "winbase.h"
+
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+{
+    switch (fdwReason)
+    {
+        case DLL_WINE_PREATTACH:
+            return FALSE;    /* prefer native version */
+        case DLL_PROCESS_ATTACH:
+            DisableThreadLibraryCalls(hinstDLL);
+            break;
+        case DLL_PROCESS_DETACH:
+            break;
+    }
+
+    return TRUE;
+}
diff --git a/dlls/d3dcompiler_33/version.rc b/dlls/d3dcompiler_33/version.rc
new file mode 100644
index 0000000..11d0618
--- /dev/null
+++ b/dlls/d3dcompiler_33/version.rc
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2010 Matteo Bruni for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ *
+ */
+
+#define WINE_FILEDESCRIPTION_STR "Wine D3DCompiler"
+#define WINE_FILENAME_STR "d3dcompiler_1.dll"
+#define WINE_FILEVERSION 9,18,904,15
+#define WINE_FILEVERSION_STR "9.18.904.0015"
+#define WINE_PRODUCTVERSION 9,18,904,15
+#define WINE_PRODUCTVERSION_STR "9.18.904.0015"
+
+#include "wine/wine_common_ver.rc"
-- 
1.7.1


More information about the wine-patches mailing list