tdm_client: Introduce header of tdm_virtual_output.
[platform/core/uifw/libtdm.git] / client / tdm_client_types.h
index f799c0b..cb4e96d 100644 (file)
@@ -9,7 +9,7 @@
  *          Taeheon Kim <th908.kim@samsung.com>,
  *          YoungJun Cho <yj44.cho@samsung.com>,
  *          SooChan Lim <sc1.lim@samsung.com>,
- *          Boram Park <sc1.lim@samsung.com>
+ *          Boram Park <boram1288.park@samsung.com>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the
@@ -109,6 +109,21 @@ typedef void
                                                         unsigned int tv_usec,
                                                         void *user_data);
 
+/* Virtual Output */
+typedef struct _tdm_client_output_mode {
+    char name[TDM_NAME_LEN];        /**< The output name */
+    unsigned int mode_count;        /**< The count of available modes */
+    unsigned int prop_count;        /**< The count of available properties */
+    unsigned int mmWidth;           /**< The physical width (milimeter) */
+    unsigned int mmHeight;          /**< The physical height (milimeter) */
+    unsigned int subpixel;          /**< The subpixel */
+} tdm_client_output_mode;
+
+typedef void tdm_client_voutput;
+
+typedef void (*tdm_client_voutput_commit_handler)(tdm_client_voutput *voutput,
+                                                                                                 void *user_data);
+/* End of Virtual Output */
 #ifdef __cplusplus
 }
 #endif