summaryrefslogtreecommitdiffstats
path: root/xlib/X11
diff options
context:
space:
mode:
Diffstat (limited to 'xlib/X11')
-rw-r--r--xlib/X11/Xlib.h15
-rw-r--r--xlib/X11/Xutil.h25
2 files changed, 0 insertions, 40 deletions
diff --git a/xlib/X11/Xlib.h b/xlib/X11/Xlib.h
index b027e28..09dc518 100644
--- a/xlib/X11/Xlib.h
+++ b/xlib/X11/Xlib.h
@@ -45,13 +45,6 @@
#endif
#endif
-#ifndef X_WCHAR
-#include <stddef.h>
-#else
-/* replace this with #include or typedef appropriate for your system */
-typedef unsigned long wchar_t;
-#endif
-
typedef char *XPointer;
#define Bool int
@@ -1053,13 +1046,6 @@ typedef struct {
XFontSet font_set;
} XmbTextItem;
-typedef struct {
- wchar_t *chars;
- int nchars;
- int delta;
- XFontSet font_set;
-} XwcTextItem;
-
typedef void (*XIMProc)();
typedef struct _XIM *XIM;
@@ -1143,7 +1129,6 @@ typedef struct _XIMText {
Bool encoding_is_wchar;
union {
char *multi_byte;
- wchar_t *wide_char;
} string;
} XIMText;
diff --git a/xlib/X11/Xutil.h b/xlib/X11/Xutil.h
index 8141b1d..38ae9f5 100644
--- a/xlib/X11/Xutil.h
+++ b/xlib/X11/Xutil.h
@@ -748,22 +748,6 @@ extern int XmbTextListToTextProperty(
#endif
);
-extern int XwcTextListToTextProperty(
-#if NeedFunctionPrototypes
- Display* /* display */,
- wchar_t** /* list */,
- int /* count */,
- XICCEncodingStyle /* style */,
- XTextProperty* /* text_prop_return */
-#endif
-);
-
-extern void XwcFreeStringList(
-#if NeedFunctionPrototypes
- wchar_t** /* list */
-#endif
-);
-
extern Status XTextPropertyToStringList(
#if NeedFunctionPrototypes
XTextProperty* /* text_prop */,
@@ -781,15 +765,6 @@ extern int XmbTextPropertyToTextList(
#endif
);
-extern int XwcTextPropertyToTextList(
-#if NeedFunctionPrototypes
- Display* /* display */,
- XTextProperty* /* text_prop */,
- wchar_t*** /* list_return */,
- int* /* count_return */
-#endif
-);
-
extern void XUnionRectWithRegion(
#if NeedFunctionPrototypes
XRectangle* /* rectangle */,