Add Clone Change to Changes Enum

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-09-26 12:12:19 +01:00
parent 8b28549aea
commit 7a2bfc7907
1 changed files with 2 additions and 1 deletions

View File

@ -11,7 +11,8 @@ enum _E_Smart_Monitor_Changes
E_SMART_MONITOR_CHANGED_POSITION = (1 << 1),
E_SMART_MONITOR_CHANGED_ORIENTATION = (1 << 2),
E_SMART_MONITOR_CHANGED_ENABLED = (1 << 3),
E_SMART_MONITOR_CHANGED_PRIMARY = (1 << 4)
E_SMART_MONITOR_CHANGED_PRIMARY = (1 << 4),
E_SMART_MONITOR_CHANGED_CLONE = (1 << 5)
};
Evas_Object *e_smart_monitor_add(Evas *evas);