Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Xi/getkmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ SOFTWARE.
#include "dix/request_priv.h"
#include "dix/rpcbuf_priv.h"
#include "Xi/handlers.h"
#include "xkb/xkbsrv_priv.h"

#include "inputstr.h" /* DeviceIntPtr */
#include "swaprep.h"
Expand Down
7 changes: 4 additions & 3 deletions hw/xquartz/quartzKeyboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
#include <stdlib.h>
#include <errno.h>
#include <sys/stat.h>
#include <assert.h>
#include <pthread.h>

#include "xkb/xkbsrv_priv.h"

#include "quartz.h"
#include "darwin.h"
Expand All @@ -53,9 +57,6 @@

#include "X11Application.h"

#include <assert.h>
#include <pthread.h>

#include "xkbsrv.h"
#include "exevents.h"
#include "X11/keysym.h"
Expand Down
8 changes: 0 additions & 8 deletions include/xkbsrv.h
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,6 @@ extern _X_EXPORT void XkbFreeKeyboard(XkbDescPtr /* xkb */ ,
Bool /* freeDesc */
);

extern _X_EXPORT KeySymsPtr XkbGetCoreMap(DeviceIntPtr /* keybd */
);

extern _X_EXPORT void XkbApplyMappingChange(DeviceIntPtr /* pXDev */ ,
KeySymsPtr /* map */ ,
KeyCode /* firstKey */ ,
Expand All @@ -213,11 +210,6 @@ extern _X_EXPORT void XkbDDXChangeControls(DeviceIntPtr /* dev */ ,
XkbControlsPtr /* new */
);

extern _X_EXPORT void XkbSetRepeatKeys(DeviceIntPtr /* pXDev */ ,
int /* key */ ,
int /* onoff */
);

extern _X_EXPORT void XkbGetRulesDflts(XkbRMLVOSet * /* rmlvo */
);

Expand Down
4 changes: 4 additions & 0 deletions xkb/xkbsrv_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -303,4 +303,8 @@ int XkbDDXUsesSoftRepeat(DeviceIntPtr dev);
void XkbDDXKeybdCtrlProc(DeviceIntPtr dev, KeybdCtrl *ctrl);
void XkbDDXUpdateDeviceIndicators(DeviceIntPtr dev, XkbSrvLedInfoPtr sli,
CARD32 newState);

KeySymsPtr XkbGetCoreMap(DeviceIntPtr keybd);
void XkbSetRepeatKeys(DeviceIntPtr pXDev, int key, int onoff);

#endif /* _XSERVER_XKBSRV_PRIV_H_ */