Add a Changed_Clone to enum.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 82323
This commit is contained in:
Christopher Michael 2013-01-07 07:39:39 +00:00 committed by Christopher Michael
parent 53f7a9ddbd
commit 3bbf2da0b8
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ enum _E_Smart_Monitor_Changes
E_SMART_MONITOR_CHANGED_ROTATION = (1 << 3),
E_SMART_MONITOR_CHANGED_REFRESH = (1 << 4),
E_SMART_MONITOR_CHANGED_RESOLUTION = (1 << 5),
E_SMART_MONITOR_CHANGED_ENABLED = (1 << 6)
E_SMART_MONITOR_CHANGED_ENABLED = (1 << 6),
E_SMART_MONITOR_CHANGED_CLONED = (1 << 7),
};
Evas_Object *e_smart_monitor_add(Evas *evas);