diff options
author | Sven Gothel <[email protected]> | 2011-12-23 01:45:24 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-12-23 01:45:24 +0100 |
commit | c6fca0edc9f092a8f08f14f6ad128b62c6227c6e (patch) | |
tree | 6a89151236a0d724fcb136713158c39f333257a5 /src/newt/native/X11Common.h | |
parent | f3f794fe37a7e33a771a4a702f3f46ead4dc6d03 (diff) |
NEWT/X11: Fix regressions of commit f3f794fe37a7e33a771a4a702f3f46ead4dc6d03: Unresolved symbols. Disable VERBOSE.
Diffstat (limited to 'src/newt/native/X11Common.h')
-rw-r--r-- | src/newt/native/X11Common.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/newt/native/X11Common.h b/src/newt/native/X11Common.h index 20c72752c..cefef690f 100644 --- a/src/newt/native/X11Common.h +++ b/src/newt/native/X11Common.h @@ -58,7 +58,7 @@ #include "NewtCommon.h" -#define VERBOSE_ON 1 +// #define VERBOSE_ON 1 #ifdef VERBOSE_ON #define DBG_PRINT(...) fprintf(stderr, __VA_ARGS__); fflush(stderr) @@ -72,5 +72,9 @@ extern jmethodID visibleChangedID; jobject getJavaWindowProperty(JNIEnv *env, Display *dpy, Window window, jlong javaObjectAtom, Bool showWarning); +void NewtDisplay_displayDispatchErrorHandlerEnable(int onoff, JNIEnv * env); +Status NewtWindows_getRootAndParent (Display *dpy, Window w, Window * root_return, Window * parent_return); +Status NewtWindows_updateInsets(JNIEnv *env, jobject jwindow, Display *dpy, Window window, int *left, int *right, int *top, int *bottom); + #endif /* _X11COMMON_H_ */ |