summaryrefslogtreecommitdiffstats
path: root/generic/tkDecls.h
diff options
context:
space:
mode:
authordas <das>2005-05-29 06:46:56 (GMT)
committerdas <das>2005-05-29 06:46:56 (GMT)
commite61ef2966a0632ac4bcbee02a7de3f755d4ff9bb (patch)
tree5cf14c3b7101c7977927e2753494667b8a1189b6 /generic/tkDecls.h
parent99166f48dd544d3fef849683b0b40175d7238547 (diff)
downloadtk-e61ef2966a0632ac4bcbee02a7de3f755d4ff9bb.zip
tk-e61ef2966a0632ac4bcbee02a7de3f755d4ff9bb.tar.gz
tk-e61ef2966a0632ac4bcbee02a7de3f755d4ff9bb.tar.bz2
* generic/tkDecls.h:
* generic/tkIntPlatDecls.h: * generic/tkPlatDecls.h: * generic/tkStubInit.c: ran missing 'make genstubs' for TIP245 changes to tk.decls * macosx/tkMacOSXXStubs.c (Tk_ResetUserInactiveTime): use symbolic constant argument in call to UpdateSystemActivity(); * macosx/Wish.pbproj/project.pbxproj: * macosx/Wish.xcode/project.pbxproj: * unix/configure.in: added/corrected linking to IOKit.framework for TIP245. * unix/configure.in: skip X11 configure checks when building tk_aqua. * unix/configure: autoconf-2.59
Diffstat (limited to 'generic/tkDecls.h')
-rw-r--r--generic/tkDecls.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/generic/tkDecls.h b/generic/tkDecls.h
index d666a44..a7cbebd 100644
--- a/generic/tkDecls.h
+++ b/generic/tkDecls.h
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkDecls.h,v 1.25 2003/10/13 03:41:37 hobbs Exp $
+ * RCS: @(#) $Id: tkDecls.h,v 1.26 2005/05/29 06:47:04 das Exp $
*/
#ifndef _TKDECLS
@@ -1735,6 +1735,16 @@ EXTERN int Tk_PhotoPutZoomedBlock _ANSI_ARGS_((
EXTERN int Tk_PhotoSetSize _ANSI_ARGS_((Tcl_Interp * interp,
Tk_PhotoHandle handle, int width, int height));
#endif
+#ifndef Tk_GetUserInactiveTime_TCL_DECLARED
+#define Tk_GetUserInactiveTime_TCL_DECLARED
+/* 269 */
+EXTERN long Tk_GetUserInactiveTime _ANSI_ARGS_((Display * dpy));
+#endif
+#ifndef Tk_ResetUserInactiveTime_TCL_DECLARED
+#define Tk_ResetUserInactiveTime_TCL_DECLARED
+/* 270 */
+EXTERN void Tk_ResetUserInactiveTime _ANSI_ARGS_((Display * dpy));
+#endif
typedef struct TkStubHooks {
struct TkPlatStubs *tkPlatStubs;
@@ -2016,6 +2026,8 @@ typedef struct TkStubs {
int (*tk_PhotoPutBlock) _ANSI_ARGS_((Tcl_Interp * interp, Tk_PhotoHandle handle, Tk_PhotoImageBlock * blockPtr, int x, int y, int width, int height, int compRule)); /* 266 */
int (*tk_PhotoPutZoomedBlock) _ANSI_ARGS_((Tcl_Interp * interp, Tk_PhotoHandle handle, Tk_PhotoImageBlock * blockPtr, int x, int y, int width, int height, int zoomX, int zoomY, int subsampleX, int subsampleY, int compRule)); /* 267 */
int (*tk_PhotoSetSize) _ANSI_ARGS_((Tcl_Interp * interp, Tk_PhotoHandle handle, int width, int height)); /* 268 */
+ long (*tk_GetUserInactiveTime) _ANSI_ARGS_((Display * dpy)); /* 269 */
+ void (*tk_ResetUserInactiveTime) _ANSI_ARGS_((Display * dpy)); /* 270 */
} TkStubs;
#ifdef __cplusplus
@@ -3102,6 +3114,14 @@ extern TkStubs *tkStubsPtr;
#define Tk_PhotoSetSize \
(tkStubsPtr->tk_PhotoSetSize) /* 268 */
#endif
+#ifndef Tk_GetUserInactiveTime
+#define Tk_GetUserInactiveTime \
+ (tkStubsPtr->tk_GetUserInactiveTime) /* 269 */
+#endif
+#ifndef Tk_ResetUserInactiveTime
+#define Tk_ResetUserInactiveTime \
+ (tkStubsPtr->tk_ResetUserInactiveTime) /* 270 */
+#endif
#endif /* defined(USE_TK_STUBS) && !defined(USE_TK_STUB_PROCS) */