Module: wine
Branch: master
Commit: 3c59b9c63189461a6ac39735a87453fd0e141ed4
URL: http://source.winehq.org/git/wine.git/?a=commit;h=3c59b9c63189461a6ac39735a…
Author: Matteo Bruni <matteo.mystral(a)gmail.com>
Date: Wed Jul 28 16:22:11 2010 +0200
d3dcompiler_37: Stub dll.
---
configure | 1 +
configure.ac | 1 +
dlls/d3dcompiler_37/Makefile.in | 12 ++++++++
dlls/d3dcompiler_37/d3dcompiler_37.spec | 10 ++++++
dlls/d3dcompiler_37/d3dcompiler_37_main.c | 44 +++++++++++++++++++++++++++++
dlls/d3dcompiler_37/version.rc | 27 +++++++++++++++++
6 files changed, 95 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index dae089b..907dbe0 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_37 enable_d3dcompiler_37
wine_fn_config_dll d3dcompiler_38 enable_d3dcompiler_38
wine_fn_config_dll d3dcompiler_39 enable_d3dcompiler_39
wine_fn_config_dll d3dcompiler_40 enable_d3dcompiler_40
diff --git a/configure.ac b/configure.ac
index 19cb296..0f61046 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_37)
WINE_CONFIG_DLL(d3dcompiler_38)
WINE_CONFIG_DLL(d3dcompiler_39)
WINE_CONFIG_DLL(d3dcompiler_40)
diff --git a/dlls/d3dcompiler_37/Makefile.in b/dlls/d3dcompiler_37/Makefile.in
new file mode 100644
index 0000000..f14646f
--- /dev/null
+++ b/dlls/d3dcompiler_37/Makefile.in
@@ -0,0 +1,12 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR = @srcdir@
+VPATH = @srcdir@
+MODULE = d3dcompiler_37.dll
+
+C_SRCS = \
+ d3dcompiler_37_main.c
+
+RC_SRCS = version.rc
+
+@MAKE_DLL_RULES@
diff --git a/dlls/d3dcompiler_37/d3dcompiler_37.spec b/dlls/d3dcompiler_37/d3dcompiler_37.spec
new file mode 100644
index 0000000..5e20e1a
--- /dev/null
+++ b/dlls/d3dcompiler_37/d3dcompiler_37.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_37/d3dcompiler_37_main.c b/dlls/d3dcompiler_37/d3dcompiler_37_main.c
new file mode 100644
index 0000000..c4745ee
--- /dev/null
+++ b/dlls/d3dcompiler_37/d3dcompiler_37_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_37/version.rc b/dlls/d3dcompiler_37/version.rc
new file mode 100644
index 0000000..adf01c7
--- /dev/null
+++ b/dlls/d3dcompiler_37/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_37.dll"
+#define WINE_FILEVERSION 9,22,949,2248
+#define WINE_FILEVERSION_STR "9.22.949.2248"
+#define WINE_PRODUCTVERSION 9,22,949,2248
+#define WINE_PRODUCTVERSION_STR "9.22.949.2248"
+
+#include "wine/wine_common_ver.rc"
Module: wine
Branch: master
Commit: fbf1e835a1bed76e4e4ea97202e01633bda574ce
URL: http://source.winehq.org/git/wine.git/?a=commit;h=fbf1e835a1bed76e4e4ea9720…
Author: Matteo Bruni <matteo.mystral(a)gmail.com>
Date: Wed Jul 28 16:13:40 2010 +0200
d3dcompiler_38: Stub dll.
---
configure | 1 +
configure.ac | 1 +
dlls/d3dcompiler_38/Makefile.in | 12 ++++++++
dlls/d3dcompiler_38/d3dcompiler_38.spec | 11 +++++++
dlls/d3dcompiler_38/d3dcompiler_38_main.c | 44 +++++++++++++++++++++++++++++
dlls/d3dcompiler_38/version.rc | 27 +++++++++++++++++
6 files changed, 96 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index 8c84dcc..dae089b 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_38 enable_d3dcompiler_38
wine_fn_config_dll d3dcompiler_39 enable_d3dcompiler_39
wine_fn_config_dll d3dcompiler_40 enable_d3dcompiler_40
wine_fn_config_dll d3dcompiler_41 enable_d3dcompiler_41
diff --git a/configure.ac b/configure.ac
index b789f06..19cb296 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_38)
WINE_CONFIG_DLL(d3dcompiler_39)
WINE_CONFIG_DLL(d3dcompiler_40)
WINE_CONFIG_DLL(d3dcompiler_41)
diff --git a/dlls/d3dcompiler_38/Makefile.in b/dlls/d3dcompiler_38/Makefile.in
new file mode 100644
index 0000000..635938d
--- /dev/null
+++ b/dlls/d3dcompiler_38/Makefile.in
@@ -0,0 +1,12 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR = @srcdir@
+VPATH = @srcdir@
+MODULE = d3dcompiler_38.dll
+
+C_SRCS = \
+ d3dcompiler_38_main.c
+
+RC_SRCS = version.rc
+
+@MAKE_DLL_RULES@
diff --git a/dlls/d3dcompiler_38/d3dcompiler_38.spec b/dlls/d3dcompiler_38/d3dcompiler_38.spec
new file mode 100644
index 0000000..9214bc1
--- /dev/null
+++ b/dlls/d3dcompiler_38/d3dcompiler_38.spec
@@ -0,0 +1,11 @@
+@ 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 D3DReturnFailure1
+@ stub DebugSetMute
diff --git a/dlls/d3dcompiler_38/d3dcompiler_38_main.c b/dlls/d3dcompiler_38/d3dcompiler_38_main.c
new file mode 100644
index 0000000..c4745ee
--- /dev/null
+++ b/dlls/d3dcompiler_38/d3dcompiler_38_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_38/version.rc b/dlls/d3dcompiler_38/version.rc
new file mode 100644
index 0000000..44c359d
--- /dev/null
+++ b/dlls/d3dcompiler_38/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_38.dll"
+#define WINE_FILEVERSION 9,23,949,2378
+#define WINE_FILEVERSION_STR "9.23.949.2378"
+#define WINE_PRODUCTVERSION 9,23,949,2378
+#define WINE_PRODUCTVERSION_STR "9.23.949.2378"
+
+#include "wine/wine_common_ver.rc"
Module: wine
Branch: master
Commit: 99491464d9b1cf89c6884dbe2267195457809d1d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=99491464d9b1cf89c6884dbe2…
Author: Matteo Bruni <matteo.mystral(a)gmail.com>
Date: Wed Jul 28 04:31:18 2010 +0200
d3dcompiler_39: Stub dll.
---
configure | 1 +
configure.ac | 1 +
dlls/d3dcompiler_39/Makefile.in | 12 ++++++++
dlls/d3dcompiler_39/d3dcompiler_39.spec | 11 +++++++
dlls/d3dcompiler_39/d3dcompiler_39_main.c | 44 +++++++++++++++++++++++++++++
dlls/d3dcompiler_39/version.rc | 27 +++++++++++++++++
6 files changed, 96 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index 76b6f4d..8c84dcc 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_39 enable_d3dcompiler_39
wine_fn_config_dll d3dcompiler_40 enable_d3dcompiler_40
wine_fn_config_dll d3dcompiler_41 enable_d3dcompiler_41
wine_fn_config_dll d3dcompiler_42 enable_d3dcompiler_42
diff --git a/configure.ac b/configure.ac
index 6a30324..b789f06 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_39)
WINE_CONFIG_DLL(d3dcompiler_40)
WINE_CONFIG_DLL(d3dcompiler_41)
WINE_CONFIG_DLL(d3dcompiler_42)
diff --git a/dlls/d3dcompiler_39/Makefile.in b/dlls/d3dcompiler_39/Makefile.in
new file mode 100644
index 0000000..789c550
--- /dev/null
+++ b/dlls/d3dcompiler_39/Makefile.in
@@ -0,0 +1,12 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR = @srcdir@
+VPATH = @srcdir@
+MODULE = d3dcompiler_39.dll
+
+C_SRCS = \
+ d3dcompiler_39_main.c
+
+RC_SRCS = version.rc
+
+@MAKE_DLL_RULES@
diff --git a/dlls/d3dcompiler_39/d3dcompiler_39.spec b/dlls/d3dcompiler_39/d3dcompiler_39.spec
new file mode 100644
index 0000000..9214bc1
--- /dev/null
+++ b/dlls/d3dcompiler_39/d3dcompiler_39.spec
@@ -0,0 +1,11 @@
+@ 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 D3DReturnFailure1
+@ stub DebugSetMute
diff --git a/dlls/d3dcompiler_39/d3dcompiler_39_main.c b/dlls/d3dcompiler_39/d3dcompiler_39_main.c
new file mode 100644
index 0000000..c4745ee
--- /dev/null
+++ b/dlls/d3dcompiler_39/d3dcompiler_39_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_39/version.rc b/dlls/d3dcompiler_39/version.rc
new file mode 100644
index 0000000..0a229b2
--- /dev/null
+++ b/dlls/d3dcompiler_39/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_39.dll"
+#define WINE_FILEVERSION 9,24,949,2307
+#define WINE_FILEVERSION_STR "9.24.949.2307"
+#define WINE_PRODUCTVERSION 9,24,949,2307
+#define WINE_PRODUCTVERSION_STR "9.24.949.2307"
+
+#include "wine/wine_common_ver.rc"
Module: wine
Branch: master
Commit: fd4efcd0b1bbe8e0a27f17080141d6e1b7df996b
URL: http://source.winehq.org/git/wine.git/?a=commit;h=fd4efcd0b1bbe8e0a27f17080…
Author: Matteo Bruni <matteo.mystral(a)gmail.com>
Date: Wed Jul 28 04:09:13 2010 +0200
d3dcompiler_40: Stub dll.
---
configure | 1 +
configure.ac | 1 +
dlls/d3dcompiler_40/Makefile.in | 12 ++++++++
dlls/d3dcompiler_40/d3dcompiler_40.spec | 12 ++++++++
dlls/d3dcompiler_40/d3dcompiler_40_main.c | 44 +++++++++++++++++++++++++++++
dlls/d3dcompiler_40/version.rc | 27 +++++++++++++++++
6 files changed, 97 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index 4549b38..76b6f4d 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_40 enable_d3dcompiler_40
wine_fn_config_dll d3dcompiler_41 enable_d3dcompiler_41
wine_fn_config_dll d3dcompiler_42 enable_d3dcompiler_42
wine_fn_config_dll d3dcompiler_43 enable_d3dcompiler_43 d3dcompiler
diff --git a/configure.ac b/configure.ac
index 5b56bb9..6a30324 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_40)
WINE_CONFIG_DLL(d3dcompiler_41)
WINE_CONFIG_DLL(d3dcompiler_42)
WINE_CONFIG_DLL(d3dcompiler_43,,[d3dcompiler])
diff --git a/dlls/d3dcompiler_40/Makefile.in b/dlls/d3dcompiler_40/Makefile.in
new file mode 100644
index 0000000..4fa8e16
--- /dev/null
+++ b/dlls/d3dcompiler_40/Makefile.in
@@ -0,0 +1,12 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR = @srcdir@
+VPATH = @srcdir@
+MODULE = d3dcompiler_40.dll
+
+C_SRCS = \
+ d3dcompiler_40_main.c
+
+RC_SRCS = version.rc
+
+@MAKE_DLL_RULES@
diff --git a/dlls/d3dcompiler_40/d3dcompiler_40.spec b/dlls/d3dcompiler_40/d3dcompiler_40.spec
new file mode 100644
index 0000000..858600e
--- /dev/null
+++ b/dlls/d3dcompiler_40/d3dcompiler_40.spec
@@ -0,0 +1,12 @@
+@ stub DebugSetMute
+@ stdcall D3DCompile(ptr long str ptr ptr str str long long ptr ptr) d3dcompiler_43.D3DCompile
+@ stdcall D3DDisassemble10Effect(ptr long ptr) d3dcompiler_43.D3DDisassemble10Effect
+@ stdcall D3DDisassemble(ptr long long ptr ptr) d3dcompiler_43.D3DDisassemble
+@ stdcall D3DGetDebugInfo(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 D3DPreprocess(ptr long str ptr ptr ptr ptr) d3dcompiler_43.D3DPreprocess
+@ stdcall D3DReflect(ptr long ptr ptr) d3dcompiler_43.D3DReflect
+@ stub D3DReturnFailure1
+@ stdcall D3DStripShader(ptr long long ptr) d3dcompiler_43.D3DStripShader
diff --git a/dlls/d3dcompiler_40/d3dcompiler_40_main.c b/dlls/d3dcompiler_40/d3dcompiler_40_main.c
new file mode 100644
index 0000000..c4745ee
--- /dev/null
+++ b/dlls/d3dcompiler_40/d3dcompiler_40_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_40/version.rc b/dlls/d3dcompiler_40/version.rc
new file mode 100644
index 0000000..8ddf001
--- /dev/null
+++ b/dlls/d3dcompiler_40/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_40.dll"
+#define WINE_FILEVERSION 9,24,950,2656
+#define WINE_FILEVERSION_STR "9.24.950.2656"
+#define WINE_PRODUCTVERSION 9,24,950,2656
+#define WINE_PRODUCTVERSION_STR "9.24.950.2656"
+
+#include "wine/wine_common_ver.rc"
Module: wine
Branch: master
Commit: 80e85cdb89a7e44c842dff30f188512bdd2b309f
URL: http://source.winehq.org/git/wine.git/?a=commit;h=80e85cdb89a7e44c842dff30f…
Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Date: Mon Aug 16 21:10:00 2010 +0200
jscript: Update French translation.
---
dlls/jscript/jscript_Fr.rc | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/jscript/jscript_Fr.rc b/dlls/jscript/jscript_Fr.rc
index a5247a8..7d62eb6 100644
--- a/dlls/jscript/jscript_Fr.rc
+++ b/dlls/jscript/jscript_Fr.rc
@@ -1,7 +1,7 @@
/*
* French resources for jscript
*
- * Copyright 2009 Frédéric Delanoy
+ * Copyright 2009-2010 Frédéric Delanoy
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -31,6 +31,7 @@ STRINGTABLE
IDS_INVALID_CALL_ARG "Appel de procédure ou argument invalide"
IDS_CREATE_OBJ_ERROR "Le serveur d'automatisation ne peut créer l'objet"
IDS_NO_PROPERTY "Cet objet ne supporte pas cette propriété ou méthode"
+ IDS_UNSUPPORTED_ACTION "Cet objet ne supporte pas cette action"
IDS_ARG_NOT_OPT "Argument non optionnel"
IDS_SYNTAX_ERROR "Erreur de syntaxe"
IDS_SEMICOLON "« ; » attendu"