mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 03:44:06 +00:00
These functions are entry points of the DDX (or stubs thereof), not supposed to be called by any drivers, so no need to keep them exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
15 lines
183 B
C
15 lines
183 B
C
|
|
#include <dix-config.h>
|
|
|
|
#include <X11/X.h>
|
|
|
|
#include "xkb/xkbsrv_priv.h"
|
|
|
|
#include "windowstr.h"
|
|
|
|
int
|
|
XkbDDXPrivate(DeviceIntPtr dev, KeyCode key, XkbAction *act)
|
|
{
|
|
return 0;
|
|
}
|