summaryrefslogtreecommitdiffstats
path: root/base/win_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/win_util.cc')
-rw-r--r--base/win_util.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/win_util.cc b/base/win_util.cc
index fa168d0..12cf241 100644
--- a/base/win_util.cc
+++ b/base/win_util.cc
@@ -21,6 +21,10 @@ namespace win_util {
#define NONCLIENTMETRICS_SIZE_PRE_VISTA \
SIZEOF_STRUCT_WITH_SPECIFIED_LAST_MEMBER(NONCLIENTMETRICS, lfMessageFont)
+const PROPERTYKEY kPKEYAppUserModelID =
+ { { 0x9F4C2855, 0x9F79, 0x4B39,
+ { 0xA8, 0xD0, 0xE1, 0xD4, 0x2D, 0xE1, 0xD5, 0xF3, } }, 5 };
+
void GetNonClientMetrics(NONCLIENTMETRICS* metrics) {
DCHECK(metrics);
@@ -394,10 +398,6 @@ bool SetAppIdForPropertyStore(IPropertyStore* property_store,
// See http://msdn.microsoft.com/en-us/library/dd378459%28VS.85%29.aspx
DCHECK(lstrlen(app_id) < 128 && wcschr(app_id, L' ') == NULL);
- static const PROPERTYKEY kPKEYAppUserModelID =
- { { 0x9F4C2855, 0x9F79, 0x4B39,
- { 0xA8, 0xD0, 0xE1, 0xD4, 0x2D, 0xE1, 0xD5, 0xF3, } }, 5 };
-
PROPVARIANT property_value;
if (FAILED(InitPropVariantFromString(app_id, &property_value)))
return false;