mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 23:13:04 +00:00
Lookup DrawCaptionTemp () only once during startup
svn path=/trunk/; revision=33950
This commit is contained in:
parent
5d074bd015
commit
cdbc0773a5
4 changed files with 28 additions and 37 deletions
|
@ -21,8 +21,10 @@
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
|
|
||||||
HINSTANCE hExplorerInstance;
|
HINSTANCE hExplorerInstance;
|
||||||
|
HMODULE hUser32;
|
||||||
HANDLE hProcessHeap;
|
HANDLE hProcessHeap;
|
||||||
HKEY hkExplorer = NULL;
|
HKEY hkExplorer = NULL;
|
||||||
|
DRAWCAPTEMP DrawCapTemp = NULL;
|
||||||
|
|
||||||
/* undoc GUID */
|
/* undoc GUID */
|
||||||
DEFINE_GUID(CLSID_RebarBandSite, 0xECD4FC4D, 0x521C, 0x11D0, 0xB7, 0x92, 0x00, 0xA0, 0xC9, 0x03, 0x12, 0xE1);
|
DEFINE_GUID(CLSID_RebarBandSite, 0xECD4FC4D, 0x521C, 0x11D0, 0xB7, 0x92, 0x00, 0xA0, 0xC9, 0x03, 0x12, 0xE1);
|
||||||
|
@ -289,6 +291,13 @@ _tWinMain(IN HINSTANCE hInstance,
|
||||||
hExplorerInstance = hInstance;
|
hExplorerInstance = hInstance;
|
||||||
hProcessHeap = GetProcessHeap();
|
hProcessHeap = GetProcessHeap();
|
||||||
|
|
||||||
|
hUser32 = GetModuleHandle(TEXT("USER32.DLL"));
|
||||||
|
if (hUser32 != NULL)
|
||||||
|
{
|
||||||
|
DrawCapTemp = (DRAWCAPTEMP)GetProcAddress(hUser32,
|
||||||
|
PROC_NAME_DRAWCAPTIONTEMP);
|
||||||
|
}
|
||||||
|
|
||||||
InitCommonControls();
|
InitCommonControls();
|
||||||
OleInitialize(NULL);
|
OleInitialize(NULL);
|
||||||
|
|
||||||
|
|
|
@ -77,8 +77,10 @@ Win32DbgPrint(const char *filename, int line, const char *lpFormat, ...)
|
||||||
Win32DbgPrint(__FILE__, __LINE__, fmt, ##__VA_ARGS__);
|
Win32DbgPrint(__FILE__, __LINE__, fmt, ##__VA_ARGS__);
|
||||||
|
|
||||||
extern HINSTANCE hExplorerInstance;
|
extern HINSTANCE hExplorerInstance;
|
||||||
|
extern HMODULE hUser32;
|
||||||
extern HANDLE hProcessHeap;
|
extern HANDLE hProcessHeap;
|
||||||
extern HKEY hkExplorer;
|
extern HKEY hkExplorer;
|
||||||
|
extern DRAWCAPTEMP DrawCapTemp;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* dragdrop.c
|
* dragdrop.c
|
||||||
|
|
|
@ -1640,7 +1640,6 @@ TaskSwichWnd_HandleItemPaint(IN OUT PTASK_SWITCH_WND This,
|
||||||
{
|
{
|
||||||
HFONT hCaptionFont, hBoldCaptionFont;
|
HFONT hCaptionFont, hBoldCaptionFont;
|
||||||
LRESULT Ret = CDRF_DODEFAULT;
|
LRESULT Ret = CDRF_DODEFAULT;
|
||||||
HMODULE hUser32;
|
|
||||||
PTASK_GROUP TaskGroup;
|
PTASK_GROUP TaskGroup;
|
||||||
PTASK_ITEM TaskItem;
|
PTASK_ITEM TaskItem;
|
||||||
|
|
||||||
|
@ -1701,14 +1700,6 @@ TaskSwichWnd_HandleItemPaint(IN OUT PTASK_SWITCH_WND This,
|
||||||
uidctFlags |= DC_ACTIVE;
|
uidctFlags |= DC_ACTIVE;
|
||||||
}
|
}
|
||||||
|
|
||||||
hUser32 = GetModuleHandle(TEXT("USER32.DLL"));
|
|
||||||
if (hUser32 != NULL)
|
|
||||||
{
|
|
||||||
DRAWCAPTEMP DrawCapTemp;
|
|
||||||
|
|
||||||
/* DrawCaptionTemp */
|
|
||||||
DrawCapTemp = (DRAWCAPTEMP)GetProcAddress(hUser32,
|
|
||||||
PROC_NAME_DRAWCAPTIONTEMP);
|
|
||||||
if (DrawCapTemp != NULL)
|
if (DrawCapTemp != NULL)
|
||||||
{
|
{
|
||||||
/* Draw the button content */
|
/* Draw the button content */
|
||||||
|
@ -1720,7 +1711,6 @@ TaskSwichWnd_HandleItemPaint(IN OUT PTASK_SWITCH_WND This,
|
||||||
NULL,
|
NULL,
|
||||||
uidctFlags);
|
uidctFlags);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return CDRF_SKIPDEFAULT;
|
return CDRF_SKIPDEFAULT;
|
||||||
|
|
||||||
|
|
|
@ -1223,7 +1223,6 @@ ITrayWindowImpl_CreateStartButtonBitmap(IN OUT ITrayWindowImpl *This)
|
||||||
BOOL Ret;
|
BOOL Ret;
|
||||||
UINT Flags;
|
UINT Flags;
|
||||||
RECT rcButton;
|
RECT rcButton;
|
||||||
HMODULE hUser32;
|
|
||||||
|
|
||||||
/* NOTE: This is the backwards compatibility code that is used if the
|
/* NOTE: This is the backwards compatibility code that is used if the
|
||||||
Common Controls Version 6.0 are not available! */
|
Common Controls Version 6.0 are not available! */
|
||||||
|
@ -1294,14 +1293,6 @@ ITrayWindowImpl_CreateStartButtonBitmap(IN OUT ITrayWindowImpl *This)
|
||||||
if (hIconStart != NULL)
|
if (hIconStart != NULL)
|
||||||
Flags |= DC_ICON;
|
Flags |= DC_ICON;
|
||||||
|
|
||||||
hUser32 = GetModuleHandle(TEXT("USER32.DLL"));
|
|
||||||
if (hUser32 != NULL)
|
|
||||||
{
|
|
||||||
DRAWCAPTEMP DrawCapTemp;
|
|
||||||
|
|
||||||
/* DrawCaptionTemp */
|
|
||||||
DrawCapTemp = (DRAWCAPTEMP)GetProcAddress(hUser32,
|
|
||||||
PROC_NAME_DRAWCAPTIONTEMP);
|
|
||||||
if (DrawCapTemp != NULL)
|
if (DrawCapTemp != NULL)
|
||||||
{
|
{
|
||||||
Ret = DrawCapTemp(NULL,
|
Ret = DrawCapTemp(NULL,
|
||||||
|
@ -1312,7 +1303,6 @@ ITrayWindowImpl_CreateStartButtonBitmap(IN OUT ITrayWindowImpl *This)
|
||||||
szStartCaption,
|
szStartCaption,
|
||||||
Flags);
|
Flags);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
SelectObject(hDC,
|
SelectObject(hDC,
|
||||||
hbmpOld);
|
hbmpOld);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue