Commit 90c615aa authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

d3dx9_43: Add d3dx9_43.dll, forwarding to d3dx9_36.dll.

parent 94deb85d
...@@ -14572,6 +14572,7 @@ wine_fn_config_dll d3dx9_39 enable_d3dx9_39 ...@@ -14572,6 +14572,7 @@ wine_fn_config_dll d3dx9_39 enable_d3dx9_39
wine_fn_config_dll d3dx9_40 enable_d3dx9_40 wine_fn_config_dll d3dx9_40 enable_d3dx9_40
wine_fn_config_dll d3dx9_41 enable_d3dx9_41 wine_fn_config_dll d3dx9_41 enable_d3dx9_41
wine_fn_config_dll d3dx9_42 enable_d3dx9_42 wine_fn_config_dll d3dx9_42 enable_d3dx9_42
wine_fn_config_dll d3dx9_43 enable_d3dx9_43
wine_fn_config_dll d3dxof enable_d3dxof d3dxof wine_fn_config_dll d3dxof enable_d3dxof d3dxof
wine_fn_config_test dlls/d3dxof/tests d3dxof_test wine_fn_config_test dlls/d3dxof/tests d3dxof_test
wine_fn_config_dll dbghelp enable_dbghelp dbghelp wine_fn_config_dll dbghelp enable_dbghelp dbghelp
......
...@@ -2351,6 +2351,7 @@ WINE_CONFIG_DLL(d3dx9_39) ...@@ -2351,6 +2351,7 @@ WINE_CONFIG_DLL(d3dx9_39)
WINE_CONFIG_DLL(d3dx9_40) WINE_CONFIG_DLL(d3dx9_40)
WINE_CONFIG_DLL(d3dx9_41) WINE_CONFIG_DLL(d3dx9_41)
WINE_CONFIG_DLL(d3dx9_42) WINE_CONFIG_DLL(d3dx9_42)
WINE_CONFIG_DLL(d3dx9_43)
WINE_CONFIG_DLL(d3dxof,,[d3dxof]) WINE_CONFIG_DLL(d3dxof,,[d3dxof])
WINE_CONFIG_TEST(dlls/d3dxof/tests) WINE_CONFIG_TEST(dlls/d3dxof/tests)
WINE_CONFIG_DLL(dbghelp,,[dbghelp]) WINE_CONFIG_DLL(dbghelp,,[dbghelp])
......
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = d3dx9_43.dll
IMPORTS = d3d9
C_SRCS = \
d3dx9_43_main.c
RC_SRCS = version.rc
@MAKE_DLL_RULES@
/*
* Direct3D X 9 main file
*
* Copyright (C) 2007 David Adam
* Copyright (C) 2009 Rico Schüller
*
* 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"
#include "wingdi.h"
#include "winuser.h"
#include "d3dx9.h"
/***********************************************************************
* DllMain.
*/
BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID reserved)
{
switch(reason)
{
case DLL_WINE_PREATTACH:
return FALSE; /* prefer native version */
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(inst);
break;
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
/***********************************************************************
* D3DXCheckVersion
* Checks whether we are compiling against the correct d3d and d3dx library.
*/
BOOL WINAPI D3DXCheckVersion(UINT d3dsdkvers, UINT d3dxsdkvers)
{
if(d3dsdkvers==D3D_SDK_VERSION && d3dxsdkvers==43)
return TRUE;
else
return FALSE;
}
/*
* Copyright 2008 Louis Lenders
* Copyright 2009 Rico Schüller
*
* 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 D3DX9"
#define WINE_FILENAME_STR "d3dx9.dll"
#define WINE_FILEVERSION 9,29,952,3111
#define WINE_FILEVERSION_STR "9.29.952.3111"
#define WINE_PRODUCTVERSION 9,29,952,3111
#define WINE_PRODUCTVERSION_STR "9.29.952.3111"
#include "wine/wine_common_ver.rc"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment