X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=client%2Ftdm_client_types.h;h=096b44f71a8a5452eca0da75cc60815c3b65bc5a;hb=80d388be9e095544b50a6004f2c8e54039ff7c18;hp=cb4e96d83a965658ca5fc373b50ca44934113839;hpb=691682c94ec0220be0d2f55f8ba1296e6d3cd0bd;p=platform%2Fcore%2Fuifw%2Flibtdm.git diff --git a/client/tdm_client_types.h b/client/tdm_client_types.h index cb4e96d..096b44f 100644 --- a/client/tdm_client_types.h +++ b/client/tdm_client_types.h @@ -110,13 +110,15 @@ typedef void void *user_data); /* Virtual Output */ +/* this is a copy of server side's tdm_output_mode */ 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 */ + unsigned int clock; + unsigned int hdisplay, hsync_start, hsync_end, htotal, hskew; + unsigned int vdisplay, vsync_start, vsync_end, vtotal, vscan; + unsigned int vrefresh; + unsigned int flags; + unsigned int type; + char name[TDM_NAME_LEN]; } tdm_client_output_mode; typedef void tdm_client_voutput;