Add init code
[platform/core/uifw/xinfo.git] / src / xinfo.h
1 /**************************************************************************
2
3 xinfo
4
5 Copyright 2014 Samsung Electronics co., Ltd. All Rights Reserved.
6
7 Contact: SooChan Lim <sc1.lim@samsung.com>
8
9 Permission is hereby granted, free of charge, to any person obtaining a
10 copy of this software and associated documentation files (the
11 "Software"), to deal in the Software without restriction, including
12 without limitation the rights to use, copy, modify, merge, publish,
13 distribute, sub license, and/or sell copies of the Software, and to
14 permit persons to whom the Software is furnished to do so, subject to
15 the following conditions:
16
17 The above copyright notice and this permission notice (including the
18 next paragraph) shall be included in all copies or substantial portions
19 of the Software.
20
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
24 IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
25 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
26 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
27 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
29 **************************************************************************/
30
31 #ifndef _XINFO_
32 #define _XINFO_ 1
33
34 #define TRUE 1
35 #define FALSE 0
36
37 enum XINFO_VAL
38 {
39         XINFO_TOPWINS,
40         XINFO_TOPVWINS,
41         XINFO_PING,
42         XINFO_XWD_TOPVWINS,
43         XINFO_XWD_WIN,
44         XINFO_TOPVWINS_PROPS
45 };
46
47 typedef struct  _Xinfo {
48         int xinfo_val;
49         FILE* output_fd;
50         char* xinfovalname;
51         char* filename;
52         char* pathname;
53         unsigned int  win; /* window id from command line */
54 } Xinfo, *XinfoPtr;
55
56 #endif
57
58
59