1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #ifndef XPROTOSTRUCTS_H
- #define XPROTOSTRUCTS_H
- #include <X11/Xmd.h>
- typedef struct _xSegment {
- INT16 x1 B16, y1 B16, x2 B16, y2 B16;
- } xSegment
- typedef struct _xPoint {
- INT16 x B16, y B16;
- } xPoint
- typedef struct _xRectangle {
- INT16 x B16, y B16;
- CARD16 width B16, height B16;
- } xRectangle
- typedef struct _xArc {
- INT16 x B16, y B16;
- CARD16 width B16, height B16;
- INT16 angle1 B16, angle2 B16;
- } xArc
- #endif
|