#include #include #include #include "private.h" struct _XIM { Display *xdisplay; }; struct _XIC { }; WL_EXPORT XIM XOpenIM(Display *xdisplay, struct _XrmHashBucketRec *rdb, char *res_name, char *res_class) { STUB(); return NULL; } WL_EXPORT Status XCloseIM(XIM im) { STUB(); return 0; } WL_EXPORT char * XGetIMValues(XIM im, ...) { STUB(); return NULL; } WL_EXPORT char * XSetIMValues(XIM im, ...) { STUB(); return NULL; } WL_EXPORT Display * XDisplayOfIM(XIM im) { STUB(); return im->xdisplay; } WL_EXPORT char * XLocaleOfIM(XIM im) { STUB(); return NULL; } WL_EXPORT XIC XCreateIC(XIM im, ...) { STUB(); return NULL; } WL_EXPORT void XDestroyIC(XIC ic) { STUB(); } WL_EXPORT void XSetICFocus(XIC id) { STUB(); } WL_EXPORT void XUnsetICFocus(XIC ic) { STUB(); } WL_EXPORT wchar_t * XwcResetIC(XIC ic) { STUB(); return NULL; } WL_EXPORT char * XmbResetIC(XIC ic) { STUB(); return NULL; } WL_EXPORT char * Xutf8ResetIC(XIC ic) { STUB(); return NULL; } WL_EXPORT char * XSetICValues(XIC ic, ...) { STUB(); return NULL; } WL_EXPORT char * XGetICValues(XIC ic, ...) { STUB(); return NULL; } WL_EXPORT XIM XIMOfIC(XIC ic) { STUB(); return NULL; }