diff options
author | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2009-01-30 19:27:47 -0200 |
---|---|---|
committer | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2009-01-30 19:27:47 -0200 |
commit | 0fe78008d234d5f87e09588f5fabb7231882019f (patch) | |
tree | f168e7937e0aceb5855a5f7372e845c7fe85042b /xtraplib.h | |
parent | 905d83be89b54fbe54762f9cba592edf40bd26f9 (diff) |
Janitor: Ansification of and missing prototypes.
This corrects compiler warnings in lib/libXTrap and app/xtrap.
Diffstat (limited to 'xtraplib.h')
-rw-r--r-- | xtraplib.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -52,6 +52,11 @@ SOFTWARE. #include <X11/extensions/xtrapdi.h> #include <X11/extensions/xtrapemacros.h> +typedef struct _XETC XETC; + +typedef int (*int_function)(XETC *tc, XETrapDatum *pdatum, BYTE *userp); +typedef void (*void_function)(XETC *tc, XETrapDatum *pdatum, BYTE *userp); + typedef struct /* Callback structure */ { void_function func; @@ -100,7 +105,7 @@ typedef struct { } XETrapDataEvent; /* Trap Context structure for maintaining XTrap State for client */ -typedef struct _XETC +struct _XETC { struct _XETC *next; /* Ptr to next linked-listed TC */ Display *dpy; /* Display ptr of current TC */ @@ -122,7 +127,7 @@ typedef struct _XETC unsigned dirty /*B32*/; /* cache dirty bits */ XETCValues values; /* shadow structure of values */ Boolean (*eventFunc[XETrapNumberEvents])(XETrapDataEvent *event, struct _XETC *tc); -} XETC; +}; #endif /* __XTRAPLIB__ */ |