Commit 25926873 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3d9: Add an API documentation stub to make winapi_check happy.

parent 8782fdba
......@@ -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);
......
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