Module: wine
Branch: master
Commit: 0ac336ff5d2cdf4b90feaeeaee0f982276886c0d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=0ac336ff5d2cdf4b90feaeeae…
Author: Matteo Bruni <matteo.mystral(a)gmail.com>
Date: Thu Jul 29 01:53:54 2010 +0200
d3dcompiler_33: Stub dll.
---
configure | 1 +
configure.ac | 1 +
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 +++++++++++++++++
6 files changed, 95 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index d5bfb14..e26dbf1 100755
--- a/configure
+++ b/configure
@@ -14453,6 +14453,7 @@ wine_fn_config_dll d3d8 enable_d3d8 d3d8
wine_fn_config_test dlls/d3d8/tests d3d8_test
wine_fn_config_dll d3d9 enable_d3d9 d3d9
wine_fn_config_test dlls/d3d9/tests d3d9_test
+wine_fn_config_dll d3dcompiler_33 enable_d3dcompiler_33
wine_fn_config_dll d3dcompiler_34 enable_d3dcompiler_34
wine_fn_config_dll d3dcompiler_35 enable_d3dcompiler_35
wine_fn_config_dll d3dcompiler_36 enable_d3dcompiler_36
diff --git a/configure.ac b/configure.ac
index d3df549..a5d7b25 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2292,6 +2292,7 @@ WINE_CONFIG_DLL(d3d8,,[d3d8])
WINE_CONFIG_TEST(dlls/d3d8/tests)
WINE_CONFIG_DLL(d3d9,,[d3d9])
WINE_CONFIG_TEST(dlls/d3d9/tests)
+WINE_CONFIG_DLL(d3dcompiler_33)
WINE_CONFIG_DLL(d3dcompiler_34)
WINE_CONFIG_DLL(d3dcompiler_35)
WINE_CONFIG_DLL(d3dcompiler_36)
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
+
+@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"
Module: wine
Branch: master
Commit: 66d44999b86a087a78bd032e483cd51f4737092f
URL: http://source.winehq.org/git/wine.git/?a=commit;h=66d44999b86a087a78bd032e4…
Author: Matteo Bruni <matteo.mystral(a)gmail.com>
Date: Thu Jul 29 01:47:13 2010 +0200
d3dcompiler_34: Stub dll.
---
configure | 1 +
configure.ac | 1 +
dlls/d3dcompiler_34/Makefile.in | 12 ++++++++
dlls/d3dcompiler_34/d3dcompiler_34.spec | 10 ++++++
dlls/d3dcompiler_34/d3dcompiler_34_main.c | 44 +++++++++++++++++++++++++++++
dlls/d3dcompiler_34/version.rc | 27 +++++++++++++++++
6 files changed, 95 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index bffc15d..d5bfb14 100755
--- a/configure
+++ b/configure
@@ -14453,6 +14453,7 @@ wine_fn_config_dll d3d8 enable_d3d8 d3d8
wine_fn_config_test dlls/d3d8/tests d3d8_test
wine_fn_config_dll d3d9 enable_d3d9 d3d9
wine_fn_config_test dlls/d3d9/tests d3d9_test
+wine_fn_config_dll d3dcompiler_34 enable_d3dcompiler_34
wine_fn_config_dll d3dcompiler_35 enable_d3dcompiler_35
wine_fn_config_dll d3dcompiler_36 enable_d3dcompiler_36
wine_fn_config_dll d3dcompiler_37 enable_d3dcompiler_37
diff --git a/configure.ac b/configure.ac
index dd4168a..d3df549 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2292,6 +2292,7 @@ WINE_CONFIG_DLL(d3d8,,[d3d8])
WINE_CONFIG_TEST(dlls/d3d8/tests)
WINE_CONFIG_DLL(d3d9,,[d3d9])
WINE_CONFIG_TEST(dlls/d3d9/tests)
+WINE_CONFIG_DLL(d3dcompiler_34)
WINE_CONFIG_DLL(d3dcompiler_35)
WINE_CONFIG_DLL(d3dcompiler_36)
WINE_CONFIG_DLL(d3dcompiler_37)
diff --git a/dlls/d3dcompiler_34/Makefile.in b/dlls/d3dcompiler_34/Makefile.in
new file mode 100644
index 0000000..62e755b
--- /dev/null
+++ b/dlls/d3dcompiler_34/Makefile.in
@@ -0,0 +1,12 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR = @srcdir@
+VPATH = @srcdir@
+MODULE = d3dcompiler_34.dll
+
+C_SRCS = \
+ d3dcompiler_34_main.c
+
+RC_SRCS = version.rc
+
+@MAKE_DLL_RULES@
diff --git a/dlls/d3dcompiler_34/d3dcompiler_34.spec b/dlls/d3dcompiler_34/d3dcompiler_34.spec
new file mode 100644
index 0000000..5e20e1a
--- /dev/null
+++ b/dlls/d3dcompiler_34/d3dcompiler_34.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_34/d3dcompiler_34_main.c b/dlls/d3dcompiler_34/d3dcompiler_34_main.c
new file mode 100644
index 0000000..c4745ee
--- /dev/null
+++ b/dlls/d3dcompiler_34/d3dcompiler_34_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_34/version.rc b/dlls/d3dcompiler_34/version.rc
new file mode 100644
index 0000000..8e89a96
--- /dev/null
+++ b/dlls/d3dcompiler_34/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,19,949,46
+#define WINE_FILEVERSION_STR "9.19.949.0046"
+#define WINE_PRODUCTVERSION 9,19,949,46
+#define WINE_PRODUCTVERSION_STR "9.19.949.0046"
+
+#include "wine/wine_common_ver.rc"
Module: wine
Branch: master
Commit: 8ea758387cede3bb057ae2db70b7305375887b1e
URL: http://source.winehq.org/git/wine.git/?a=commit;h=8ea758387cede3bb057ae2db7…
Author: Matteo Bruni <matteo.mystral(a)gmail.com>
Date: Wed Jul 28 16:44:37 2010 +0200
d3dcompiler_35: Stub dll.
---
configure | 1 +
configure.ac | 1 +
dlls/d3dcompiler_35/Makefile.in | 12 ++++++++
dlls/d3dcompiler_35/d3dcompiler_35.spec | 10 ++++++
dlls/d3dcompiler_35/d3dcompiler_35_main.c | 44 +++++++++++++++++++++++++++++
dlls/d3dcompiler_35/version.rc | 27 +++++++++++++++++
6 files changed, 95 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index 985c84a..bffc15d 100755
--- a/configure
+++ b/configure
@@ -14453,6 +14453,7 @@ wine_fn_config_dll d3d8 enable_d3d8 d3d8
wine_fn_config_test dlls/d3d8/tests d3d8_test
wine_fn_config_dll d3d9 enable_d3d9 d3d9
wine_fn_config_test dlls/d3d9/tests d3d9_test
+wine_fn_config_dll d3dcompiler_35 enable_d3dcompiler_35
wine_fn_config_dll d3dcompiler_36 enable_d3dcompiler_36
wine_fn_config_dll d3dcompiler_37 enable_d3dcompiler_37
wine_fn_config_dll d3dcompiler_38 enable_d3dcompiler_38
diff --git a/configure.ac b/configure.ac
index a1a4e1d..dd4168a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2292,6 +2292,7 @@ WINE_CONFIG_DLL(d3d8,,[d3d8])
WINE_CONFIG_TEST(dlls/d3d8/tests)
WINE_CONFIG_DLL(d3d9,,[d3d9])
WINE_CONFIG_TEST(dlls/d3d9/tests)
+WINE_CONFIG_DLL(d3dcompiler_35)
WINE_CONFIG_DLL(d3dcompiler_36)
WINE_CONFIG_DLL(d3dcompiler_37)
WINE_CONFIG_DLL(d3dcompiler_38)
diff --git a/dlls/d3dcompiler_35/Makefile.in b/dlls/d3dcompiler_35/Makefile.in
new file mode 100644
index 0000000..aaa2bb5
--- /dev/null
+++ b/dlls/d3dcompiler_35/Makefile.in
@@ -0,0 +1,12 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR = @srcdir@
+VPATH = @srcdir@
+MODULE = d3dcompiler_35.dll
+
+C_SRCS = \
+ d3dcompiler_35_main.c
+
+RC_SRCS = version.rc
+
+@MAKE_DLL_RULES@
diff --git a/dlls/d3dcompiler_35/d3dcompiler_35.spec b/dlls/d3dcompiler_35/d3dcompiler_35.spec
new file mode 100644
index 0000000..5e20e1a
--- /dev/null
+++ b/dlls/d3dcompiler_35/d3dcompiler_35.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_35/d3dcompiler_35_main.c b/dlls/d3dcompiler_35/d3dcompiler_35_main.c
new file mode 100644
index 0000000..c4745ee
--- /dev/null
+++ b/dlls/d3dcompiler_35/d3dcompiler_35_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_35/version.rc b/dlls/d3dcompiler_35/version.rc
new file mode 100644
index 0000000..306d2d6
--- /dev/null
+++ b/dlls/d3dcompiler_35/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_35.dll"
+#define WINE_FILEVERSION 9,19,949,1104
+#define WINE_FILEVERSION_STR "9.19.949.1104"
+#define WINE_PRODUCTVERSION 9,19,949,1104
+#define WINE_PRODUCTVERSION_STR "9.19.949.1104"
+
+#include "wine/wine_common_ver.rc"
Module: wine
Branch: master
Commit: 458eb08a30ef92bbe1643fb2bf5dd79782350d0e
URL: http://source.winehq.org/git/wine.git/?a=commit;h=458eb08a30ef92bbe1643fb2b…
Author: Matteo Bruni <matteo.mystral(a)gmail.com>
Date: Wed Jul 28 16:37:28 2010 +0200
d3dcompiler_36: Stub dll.
---
configure | 1 +
configure.ac | 1 +
dlls/d3dcompiler_36/Makefile.in | 12 ++++++++
dlls/d3dcompiler_36/d3dcompiler_36.spec | 10 ++++++
dlls/d3dcompiler_36/d3dcompiler_36_main.c | 44 +++++++++++++++++++++++++++++
dlls/d3dcompiler_36/version.rc | 27 +++++++++++++++++
6 files changed, 95 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index 844dde5..985c84a 100755
--- a/configure
+++ b/configure
@@ -14453,6 +14453,7 @@ wine_fn_config_dll d3d8 enable_d3d8 d3d8
wine_fn_config_test dlls/d3d8/tests d3d8_test
wine_fn_config_dll d3d9 enable_d3d9 d3d9
wine_fn_config_test dlls/d3d9/tests d3d9_test
+wine_fn_config_dll d3dcompiler_36 enable_d3dcompiler_36
wine_fn_config_dll d3dcompiler_37 enable_d3dcompiler_37
wine_fn_config_dll d3dcompiler_38 enable_d3dcompiler_38
wine_fn_config_dll d3dcompiler_39 enable_d3dcompiler_39
diff --git a/configure.ac b/configure.ac
index 982e6f6..a1a4e1d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2292,6 +2292,7 @@ WINE_CONFIG_DLL(d3d8,,[d3d8])
WINE_CONFIG_TEST(dlls/d3d8/tests)
WINE_CONFIG_DLL(d3d9,,[d3d9])
WINE_CONFIG_TEST(dlls/d3d9/tests)
+WINE_CONFIG_DLL(d3dcompiler_36)
WINE_CONFIG_DLL(d3dcompiler_37)
WINE_CONFIG_DLL(d3dcompiler_38)
WINE_CONFIG_DLL(d3dcompiler_39)
diff --git a/dlls/d3dcompiler_36/Makefile.in b/dlls/d3dcompiler_36/Makefile.in
new file mode 100644
index 0000000..9fd595c
--- /dev/null
+++ b/dlls/d3dcompiler_36/Makefile.in
@@ -0,0 +1,12 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR = @srcdir@
+VPATH = @srcdir@
+MODULE = d3dcompiler_36.dll
+
+C_SRCS = \
+ d3dcompiler_36_main.c
+
+RC_SRCS = version.rc
+
+@MAKE_DLL_RULES@
diff --git a/dlls/d3dcompiler_36/d3dcompiler_36.spec b/dlls/d3dcompiler_36/d3dcompiler_36.spec
new file mode 100644
index 0000000..5e20e1a
--- /dev/null
+++ b/dlls/d3dcompiler_36/d3dcompiler_36.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_36/d3dcompiler_36_main.c b/dlls/d3dcompiler_36/d3dcompiler_36_main.c
new file mode 100644
index 0000000..c4745ee
--- /dev/null
+++ b/dlls/d3dcompiler_36/d3dcompiler_36_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_36/version.rc b/dlls/d3dcompiler_36/version.rc
new file mode 100644
index 0000000..db0b23e
--- /dev/null
+++ b/dlls/d3dcompiler_36/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_36.dll"
+#define WINE_FILEVERSION 9,19,949,2111
+#define WINE_FILEVERSION_STR "9.19.949.2111"
+#define WINE_PRODUCTVERSION 9,19,949,2111
+#define WINE_PRODUCTVERSION_STR "9.19.949.2111"
+
+#include "wine/wine_common_ver.rc"