You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.1 KiB
60 lines
1.1 KiB
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
FakeThemeMetrics.cpp
|
|
|
|
Abstract:
|
|
|
|
This Shim will allow the Skemers group to shim applications that do not behave
|
|
well with "Themed" system metrics
|
|
|
|
History:
|
|
|
|
11/30/2000 a-brienw Converted to shim frame work version 2.
|
|
|
|
--*/
|
|
|
|
#include "precomp.h"
|
|
|
|
#ifndef ARRAYSIZE
|
|
#define ARRAYSIZE(x) sizeof(x)/sizeof((x)[0])
|
|
#endif
|
|
|
|
IMPLEMENT_SHIM_BEGIN(MSDevDisabledButtons)
|
|
#include "ShimHookMacro.h"
|
|
|
|
// Add APIs that you wish to hook to this enumeration. The first one
|
|
// must have "= USERAPIHOOKSTART", and the last one must be
|
|
// APIHOOK_Count.
|
|
APIHOOK_ENUM_BEGIN
|
|
APIHOOK_ENUM_ENTRY(GetSysColor)
|
|
APIHOOK_ENUM_END
|
|
|
|
DWORD APIHOOK(GetSysColor)(int nIndex)
|
|
{
|
|
if (nIndex == COLOR_MENU)
|
|
return ORIGINAL_API(GetSysColor)(COLOR_BTNFACE);
|
|
|
|
if (nIndex == COLOR_MENUBAR)
|
|
return ORIGINAL_API(GetSysColor)(COLOR_BTNFACE);
|
|
|
|
return ORIGINAL_API(GetSysColor)(nIndex);
|
|
}
|
|
|
|
/*++
|
|
|
|
Register hooked functions
|
|
|
|
--*/
|
|
|
|
HOOK_BEGIN
|
|
|
|
APIHOOK_ENTRY(USER32.DLL, GetSysColor)
|
|
|
|
HOOK_END
|
|
|
|
IMPLEMENT_SHIM_END
|
|
|