summaryrefslogtreecommitdiff
path: root/include/X11/ThreadsI.h
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-25 19:28:16 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-25 19:28:16 +0000
commitf81d7ef72c9b4f13e33efa812bed9446657ed003 (patch)
tree183442a515d232d4d88cb56d6de651c215731c3f /include/X11/ThreadsI.h
parentbdc0667ef29e24b1a2188b11546d843a7d3e5ef6 (diff)
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_902xf86-4_3_99_901xf86-4_3_99_16
Diffstat (limited to 'include/X11/ThreadsI.h')
-rw-r--r--include/X11/ThreadsI.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/include/X11/ThreadsI.h b/include/X11/ThreadsI.h
index 3b51e07..14d34b0 100644
--- a/include/X11/ThreadsI.h
+++ b/include/X11/ThreadsI.h
@@ -53,7 +53,7 @@ used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*/
-/* $XFree86: xc/lib/Xt/ThreadsI.h,v 3.5 2001/12/14 19:56:31 dawes Exp $ */
+/* $XFree86: xc/lib/Xt/ThreadsI.h,v 3.6 2003/04/21 16:34:29 herrb Exp $ */
#ifndef _XtThreadsI_h
#define _XtThreadsI_h
@@ -63,44 +63,32 @@ in this Software without prior written authorization from The Open Group.
typedef struct _LockRec *LockPtr;
typedef void (*ThreadAppProc)(
-#if NeedFunctionPrototypes
XtAppContext /* app */
-#endif
);
typedef void (*ThreadAppYieldLockProc)(
-#if NeedFunctionPrototypes
XtAppContext, /* app */
Boolean*, /* push_thread */
Boolean*, /* pushed_thread */
int* /* level */
-#endif
);
typedef void (*ThreadAppRestoreLockProc)(
-#if NeedFunctionPrototypes
XtAppContext /* app */,
int, /* level */
Boolean* /* pushed_thread */
-#endif
);
extern void (*_XtProcessLock)(
-#if NeedFunctionPrototypes
void
-#endif
);
extern void (*_XtProcessUnlock)(
-#if NeedFunctionPrototypes
void
-#endif
);
extern void (*_XtInitAppLock)(
-#if NeedFunctionPrototypes
XtAppContext /* app */
-#endif
);
#define INIT_APP_LOCK(app) if(_XtInitAppLock) (*_XtInitAppLock)(app)