Module: wine Branch: refs/heads/master Commit: 6e7d8a7271b5f81cb1a508cabb6d2c5b8ddb8226 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=6e7d8a7271b5f81cb1a508ca...
Author: Francois Gouget fgouget@free.fr Date: Mon Dec 5 12:49:51 2005 +0100
msvidc32: Add a comment for DllMain() to stop winapi_check from complaining about it.
---
dlls/msvidc32/msvideo1.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dlls/msvidc32/msvideo1.c b/dlls/msvidc32/msvideo1.c index 0932978..f971d4f 100644 --- a/dlls/msvidc32/msvideo1.c +++ b/dlls/msvidc32/msvideo1.c @@ -561,6 +561,9 @@ LRESULT WINAPI CRAM_DriverProc( DWORD_PT return r; }
+/*********************************************************************** + * DllMain + */ BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved) { TRACE("(%p,%ld,%p)\n", hModule, dwReason, lpReserved);