Module: wine Branch: master Commit: 25926873218b6cf7086734883608205c50de8a67 URL: http://source.winehq.org/git/wine.git/?a=commit;h=25926873218b6cf70867348836...
Author: Francois Gouget fgouget@free.fr Date: Mon Aug 4 10:19:47 2008 +0200
d3d9: Add an API documentation stub to make winapi_check happy.
---
dlls/d3d9/d3d9_main.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/dlls/d3d9/d3d9_main.c b/dlls/d3d9/d3d9_main.c index a93c122..03c75a4 100644 --- a/dlls/d3d9/d3d9_main.c +++ b/dlls/d3d9/d3d9_main.c @@ -90,9 +90,12 @@ void* WINAPI Direct3DShaderValidatorCreate9(void) return NULL; }
-/* At process attach */ +/******************************************************************* + * DllMain + */ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv) { + /* At process attach */ TRACE("fdwReason=%d\n", fdwReason); if (fdwReason == DLL_PROCESS_ATTACH) DisableThreadLibraryCalls(hInstDLL);