-fixed some msvc /W4 warnings

svn path=/trunk/; revision=22940
This commit is contained in:
Christoph von Wittich 2006-07-08 19:14:12 +00:00
parent c742e77e3b
commit 0535c5d920
2 changed files with 6 additions and 0 deletions

View file

@ -491,5 +491,8 @@ DllMain(
ULONG dwReason,
PVOID reserved)
{
UNREFERENCED_PARAMETER(hinstDll);
UNREFERENCED_PARAMETER(dwReason);
UNREFERENCED_PARAMETER(reserved);
return 1;
}

View file

@ -490,5 +490,8 @@ DllMain(
ULONG dwReason,
PVOID reserved)
{
UNREFERENCED_PARAMETER(hinstDll);
UNREFERENCED_PARAMETER(dwReason);
UNREFERENCED_PARAMETER(reserved);
return 1;
}