|
Revision 8, 0.9 KB
(checked in by emasson, 3 years ago)
|
|
initial import for the community edition
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | #ifndef included_proto_h |
|---|
| 4 | #define included_proto_h |
|---|
| 5 | |
|---|
| 6 | #define PROTO_XT_ACTIONS_ARGS \ |
|---|
| 7 | (Widget w, XEvent *event, String *params, Cardinal *num_params) |
|---|
| 8 | |
|---|
| 9 | #define PROTO_XT_CALLBACK_ARGS \ |
|---|
| 10 | (Widget gw, XtPointer closure, XtPointer data) |
|---|
| 11 | |
|---|
| 12 | #define PROTO_XT_CVT_SELECT_ARGS \ |
|---|
| 13 | (Widget w, Atom *selection, Atom *target, Atom *type, XtPointer *value, unsigned long *length, int *format) |
|---|
| 14 | |
|---|
| 15 | #define PROTO_XT_EV_HANDLER_ARGS \ |
|---|
| 16 | (Widget w, XtPointer closure, XEvent *event, Boolean *cont) |
|---|
| 17 | |
|---|
| 18 | #define PROTO_XT_SEL_CB_ARGS \ |
|---|
| 19 | (Widget w, XtPointer client_data, Atom *selection, Atom *type, XtPointer value, unsigned long *length, int *format) |
|---|
| 20 | |
|---|
| 21 | #ifdef SIGNALRETURNSINT |
|---|
| 22 | #define SIGNAL_T int |
|---|
| 23 | #define SIGNAL_RETURN return 0 |
|---|
| 24 | #else |
|---|
| 25 | #define SIGNAL_T void |
|---|
| 26 | #define SIGNAL_RETURN return |
|---|
| 27 | #endif |
|---|
| 28 | |
|---|
| 29 | #endif/*included_proto_h*/ |
|---|