From: Noah L. <nl...@co...> - 2002-02-03 16:03:41
|
Hello, On Sun, Feb 03, 2002 at 04:32:37PM +0900, Araki Ken wrote: > > ---- Xlib.h > typedef void (*XIDProc)( > #if NeedFunctionPrototypes > Display*, > XPointer, > XPointer > #endif > ); My system's Xlib.h has no XIDProc. > > ... > > extern Bool XRegisterIMInstantiateCallback( > #if NeedFunctionPrototypes > Display* /* dpy */, > struct _XrmHashBucketRec* /* rdb */, > char* /* res_name */, > char* /* res_class */, > XIDProc /* callback */, > XPointer /* client_data */ > #endif > ); > ---- Xlib.h extern Bool XRegisterIMInstantiateCallback( #if NeedFunctionPrototypes Display* /* dpy */, struct _XrmHashBucketRec* /* rdb */, char* /* res_name */, char* /* res_class */, XIMProc /* callback */, XPointer* /* client_data */ #endif ); Here's XIMProc: typedef void (*XIMProc)( #ifdef NeedFunctionPrototypes XIC, XPointer, XPointer #endif ); This is X11R6.1 I believe. (Sorry I have such an old version!) Noah |