summaryrefslogtreecommitdiff
path: root/xim.c
blob: f3985cb071032e104f15d572ae643bfa7da93c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#include <stdlib.h>
#include <string.h>

#include <X11/Xlib.h>
#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;
}