Commit f1aa061d authored by Zhiyi Zhang's avatar Zhiyi Zhang Committed by Alexandre Julliard

uxtheme: Support parsing more clock states.

parent 22adfc67
......@@ -431,6 +431,8 @@ static const MSSTYLES_CLASS_MAP classButton[] = {
static const MSSTYLES_CLASS_MAP classClock[] = {
{CLP_TIME, 0, L"TIME"},
{CLP_TIME, CLS_NORMAL, L"NORMAL"},
{CLP_TIME, CLS_HOT, L"HOT"},
{CLP_TIME, CLS_PRESSED, L"PRESSED"},
{0, 0, L""}
};
......
......@@ -522,6 +522,8 @@ enum CLOCKPARTS {
enum CLOCKSTATES {
CLS_NORMAL = 1,
CLS_HOT = 2,
CLS_PRESSED = 3,
};
/* TRAYNOTIFY class */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment