1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

X11: Load XNextRequest function

This commit is contained in:
reuk 2025-09-23 19:34:49 +01:00
parent 141b2d64cc
commit 89d019b5da
No known key found for this signature in database
2 changed files with 5 additions and 0 deletions

View file

@ -161,6 +161,7 @@ bool X11Symbols::loadAllSymbols()
makeSymbolBinding (xMapWindow, "XMapWindow"), makeSymbolBinding (xMapWindow, "XMapWindow"),
makeSymbolBinding (xMoveResizeWindow, "XMoveResizeWindow"), makeSymbolBinding (xMoveResizeWindow, "XMoveResizeWindow"),
makeSymbolBinding (xNextEvent, "XNextEvent"), makeSymbolBinding (xNextEvent, "XNextEvent"),
makeSymbolBinding (xNextRequest, "XNextRequest"),
makeSymbolBinding (xOpenDisplay, "XOpenDisplay"), makeSymbolBinding (xOpenDisplay, "XOpenDisplay"),
makeSymbolBinding (xPeekEvent, "XPeekEvent"), makeSymbolBinding (xPeekEvent, "XPeekEvent"),
makeSymbolBinding (xPending, "XPending"), makeSymbolBinding (xPending, "XPending"),

View file

@ -346,6 +346,10 @@ public:
(::Display*, XEvent*), (::Display*, XEvent*),
int) int)
JUCE_GENERATE_FUNCTION_WITH_DEFAULT (XNextRequest, xNextRequest,
(::Display*),
unsigned long)
JUCE_GENERATE_FUNCTION_WITH_DEFAULT (XOpenDisplay, xOpenDisplay, JUCE_GENERATE_FUNCTION_WITH_DEFAULT (XOpenDisplay, xOpenDisplay,
(const char*), (const char*),
::Display*) ::Display*)