2009/10/31 André Hentschel nerv@dawncrow.de:
So that there are no warnings if tests only use the constant variables in that header.
dlls/comctl32/tests/v6util.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/comctl32/tests/v6util.h b/dlls/comctl32/tests/v6util.h index 21a8e4f..ae3dbbe 100644 --- a/dlls/comctl32/tests/v6util.h +++ b/dlls/comctl32/tests/v6util.h @@ -56,7 +56,7 @@ static const CHAR manifest[] = "</dependency>\n" "</assembly>\n";
-static void unload_v6_module(ULONG_PTR cookie) +static inline void unload_v6_module(ULONG_PTR cookie)
You're using old source tree. Current prototype is:
--- static void unload_v6_module(ULONG_PTR cookie, HANDLE hCtx) ---
Why do you need such changes? I don't think inline it's useful here.