uxtheme: Make some variables static.
This commit is contained in:
parent
7d5da23463
commit
5234c8c94b
|
@ -57,17 +57,17 @@ static const WCHAR szDllName[] = {'D','l','l','N','a','m','e','\0'};
|
||||||
static const WCHAR szIniDocumentation[] = {'d','o','c','u','m','e','n','t','a','t','i','o','n','\0'};
|
static const WCHAR szIniDocumentation[] = {'d','o','c','u','m','e','n','t','a','t','i','o','n','\0'};
|
||||||
|
|
||||||
HINSTANCE hDllInst;
|
HINSTANCE hDllInst;
|
||||||
|
|
||||||
DWORD dwThemeAppProperties = STAP_ALLOW_NONCLIENT | STAP_ALLOW_CONTROLS;
|
|
||||||
ATOM atWindowTheme;
|
|
||||||
ATOM atSubAppName;
|
|
||||||
ATOM atSubIdList;
|
|
||||||
ATOM atDialogThemeEnabled;
|
ATOM atDialogThemeEnabled;
|
||||||
|
|
||||||
BOOL bThemeActive = FALSE;
|
static DWORD dwThemeAppProperties = STAP_ALLOW_NONCLIENT | STAP_ALLOW_CONTROLS;
|
||||||
WCHAR szCurrentTheme[MAX_PATH];
|
static ATOM atWindowTheme;
|
||||||
WCHAR szCurrentColor[64];
|
static ATOM atSubAppName;
|
||||||
WCHAR szCurrentSize[64];
|
static ATOM atSubIdList;
|
||||||
|
|
||||||
|
static BOOL bThemeActive = FALSE;
|
||||||
|
static WCHAR szCurrentTheme[MAX_PATH];
|
||||||
|
static WCHAR szCurrentColor[64];
|
||||||
|
static WCHAR szCurrentSize[64];
|
||||||
|
|
||||||
/***********************************************************************/
|
/***********************************************************************/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue