fix build of d3d9.dll and add it to bootcd
[reactos.git] / reactos / dll / directx / d3d9 / d3d9.c
1 #include <windows.h>
2 #include "d3d9.h"
3
4 #include <debug.h>
5
6 HRESULT DLLAPI Direct3DShaderValidatorCreate9(void)
7 {
8 UNIMPLEMENTED
9 return 0;
10 }
11
12 HRESULT DLLAPI PSGPError(void)
13 {
14 UNIMPLEMENTED
15 return 0;
16 }
17
18 HRESULT DLLAPI PSGPSampleTexture(void)
19 {
20 UNIMPLEMENTED
21 return 0;
22 }
23
24 HRESULT DLLAPI DebugSetLevel(void)
25 {
26 UNIMPLEMENTED
27 return 0;
28 }
29
30 HRESULT DLLAPI DebugSetMute(DWORD dw1)
31 {
32 UNIMPLEMENTED
33 return 0;
34 }
35
36 DWORD DLLAPI Direct3DCreate9( UINT SDKVersion )
37 {
38 UNIMPLEMENTED
39 return 0;
40 }
41
42 BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
43 {
44 switch (ul_reason_for_call)
45 {
46 case DLL_PROCESS_ATTACH:
47 case DLL_THREAD_ATTACH:
48 case DLL_THREAD_DETACH:
49 case DLL_PROCESS_DETACH:
50 break;
51 }
52
53 return TRUE;
54 }