UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
GraphicEnv.h
1 /* GraphicEnv.h @(#)1.1 2/27/95 */
2 
3 #ifndef __GraphicEnv_h
4 
5 #define __GraphicEnv_h
6 
7 #include <X11/Xlib.h>
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif /* __cplusplus */
12 
13 
14 /* Graphic environment structure */
15 typedef struct
16 {
17  Display* display; /* X server connection */
18  int screen; /* current screen */
19  Window wid; /* window indentifier */
20  Pixmap pid; /* pixmap indentifier */
21  GC gc; /* used graphic context */
22 
23 } GraphicEnv;
24 
25 
26 #ifdef __cplusplus
27 };
28 #endif /* __cplusplus */
29 
30 #endif /* GraphicEnv.h */
Definition: GraphicEnv.h:15