42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
|
/*
|
||
|
* Direct3D wine internal interface main
|
||
|
*
|
||
|
* Copyright 2002-2003 The wine-d3d team
|
||
|
* Copyright 2002-2003 Raphael Junqueira
|
||
|
*
|
||
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
#include "wined3d_private.h"
|
||
|
|
||
|
WINE_DEFAULT_DEBUG_CHANNEL(wine_d3d);
|
||
|
|
||
|
IDirect3DImpl* WINAPI WineDirect3DCreate(UINT SDKVersion) {
|
||
|
FIXME("SDKVersion = %x, TODO\n", SDKVersion);
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
/* At process attach */
|
||
|
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
|
||
|
{
|
||
|
TRACE("wined3d DLLMain Reason=%ld\n", fdwReason);
|
||
|
if (fdwReason == DLL_PROCESS_ATTACH) {
|
||
|
DisableThreadLibraryCalls(hInstDLL);
|
||
|
}
|
||
|
return TRUE;
|
||
|
}
|