mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
- declare variables as extern
- release desktop dc See issue #3052 for more details. svn path=/trunk/; revision=32378
This commit is contained in:
parent
1e4d38ca34
commit
9d172977d3
2 changed files with 9 additions and 8 deletions
|
@ -278,6 +278,7 @@ void Draw(HDC aDc)
|
|||
SelectObject (HdcStrech, hOld);
|
||||
DeleteObject (HbmpStrech);
|
||||
DeleteDC (HdcStrech);
|
||||
ReleaseDC(hDesktopWindow, desktopHdc);
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
@ -20,17 +20,17 @@
|
|||
|
||||
//////////////////////////////////////////////////////////////////
|
||||
|
||||
int iZoom;
|
||||
extern int iZoom;
|
||||
|
||||
BOOL bShowWarning;
|
||||
extern BOOL bShowWarning;
|
||||
|
||||
BOOL bFollowMouse;
|
||||
BOOL bFollowFocus;
|
||||
BOOL bFollowCaret;
|
||||
extern BOOL bFollowMouse;
|
||||
extern BOOL bFollowFocus;
|
||||
extern BOOL bFollowCaret;
|
||||
|
||||
BOOL bInvertColors;
|
||||
BOOL bStartMinimized;
|
||||
BOOL bShowMagnifier;
|
||||
extern BOOL bInvertColors;
|
||||
extern BOOL bStartMinimized;
|
||||
extern BOOL bShowMagnifier;
|
||||
|
||||
void LoadSettings();
|
||||
void SaveSettings();
|
||||
|
|
Loading…
Reference in a new issue