mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 19:49:50 +00:00
winecfg: Make some variables static.
This commit is contained in:
parent
e179c20b10
commit
0119d770a3
2 changed files with 3 additions and 3 deletions
|
@ -423,8 +423,8 @@ static void do_apply_theme (int themeIndex, int colorIndex, int sizeIndex)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int updating_ui;
|
static int updating_ui;
|
||||||
BOOL theme_dirty;
|
static BOOL theme_dirty;
|
||||||
|
|
||||||
static void enable_size_and_color_controls (HWND dialog, BOOL enable)
|
static void enable_size_and_color_controls (HWND dialog, BOOL enable)
|
||||||
{
|
{
|
||||||
|
|
|
@ -116,7 +116,7 @@ void apply_drive_changes(void);
|
||||||
BOOL browse_for_unix_folder(HWND dialog, WCHAR *pszPath);
|
BOOL browse_for_unix_folder(HWND dialog, WCHAR *pszPath);
|
||||||
extern struct drive drives[26]; /* one for each drive letter */
|
extern struct drive drives[26]; /* one for each drive letter */
|
||||||
|
|
||||||
BOOL gui_mode;
|
extern BOOL gui_mode;
|
||||||
|
|
||||||
/* Some basic utilities to make win32 suck less */
|
/* Some basic utilities to make win32 suck less */
|
||||||
#define disable(id) EnableWindow(GetDlgItem(dialog, id), 0);
|
#define disable(id) EnableWindow(GetDlgItem(dialog, id), 0);
|
||||||
|
|
Loading…
Reference in a new issue