XKB FUNCTIONS XkbOpenDisplay(3x11)
NAME
XkbOpenDisplay - Checks for a compatible version of the Xkb
extension in both the library and the server, and initial-
izes the extension for use.SYNOPSIS
cc [ flag... ] file... -lX11 [ library... ]
Display XkbOpenDisplay (char *display_name, int *event_rtrn,
int *error_rtrn, int *major_in_out, int *minor_in_out,
int *reason_rtrn);
ARGUMENTSdisplay_name
hardware display name, which determines the display and communications domain to be usedevent_rtrn
backfilled with the extension base event codeerror_rtrn
backfilled with the extension base error codemajor_in_out
compile time lib major version in, server major version outminor_in_out
compile time lib min version in, server minor version outreason_rtrn
backfilled with a status codeDESCRIPTION
As a convenience, you can use the function XkbOpenDisplay to
perform these three tasks at once: open a connection to an X server, check for a compatible version of the Xkb extension in both the library and the server, and initialize the extension for use.XkbOpenDisplay is a convenience function that opens an X
display connection and initializes the X keyboard extension.In all cases, upon return reason_rtrn contains a status
value indicating success or the type of failure. Ifmajor_in_out and minor_in_out are not NULL, XkbOpenDisplay
first calls XkbLibraryVersion to determine whether the client library is compatible, passing it the values pointedto by major_in_out and minor_in_out. If the library is
incompatible, XkbOpenDisplay backfills major_in_out and
minor_in_out with the major and minor extension versions of
the library being used and returns NULL. If the library is X Version 11 Last change: libX11 1.3.5 1XKB FUNCTIONS XkbOpenDisplay(3x11)
compatible, XkbOpenDisplay next calls XOpenDisplay with the
display_name. If this fails, the function returns NULL. If
successful, XkbOpenDisplay calls XkbQueryExtension and back-
fills the major and minor Xkb server extension versionnumbers in major_in_out and minor_in_out. If the server
extension version is not compatible with the library exten-
sion version or if the server extension is not present,XkbOpenDisplay closes the display and returns NULL. When
successful, the function returns the display connection.The possible values for reason_rtrn are:
+o XkbOD_BadLibraryVersion indicates XkbLibraryVersion
returned False.+o XkbOD_ConnectionRefused indicates the display could not
be opened.+o XkbOD_BadServerVersion indicates the library and the
server have incompatible extension versions.+o XkbOD_NonXkbServer indicates the extension is not
present in the X server.+o XkbOD_Success indicates that the function succeeded.
RETURN VALUES
NULL The XkbOpenDisplay function returns NULL if
the library is incompatible.The XkbOpenDisplay function returns NULL if
the call to XOpenDisplay with thedisplay_name fails.
The XkbOpenDisplay function returns NULL and
closes the display if the server extension version is not compatible with the library extension version or if the server extension is not present. DIAGNOSTICSBadAccess The Xkb extension has not been properly ini-
tializedSEE ALSO
XkbLibraryVersion(3x11), XkbQueryExtension(3x11), XOpenDisplay(3x11)ATTRIBUTES
See attributes(5) for descriptions of the following X Version 11 Last change: libX11 1.3.5 2XKB FUNCTIONS XkbOpenDisplay(3x11)
attributes:____________________________________________________________
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
|_____________________________|_____________________________|
| Availability | x11/library/libx11 ||_____________________________|_____________________________|
| Interface Stability | Committed ||_____________________________|_____________________________|
| MT-Level | See XInitThreads(3X11) |
|_____________________________|_____________________________|
X Version 11 Last change: libX11 1.3.5 3