diff options
author | das <das@noemail.net> | 2009-06-29 14:35:01 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2009-06-29 14:35:01 (GMT) |
commit | a6401db9ac290e17faaf7897ec75bf07ef5b743f (patch) | |
tree | 81b5743d2ff5d45f2ee4992153e4f34949ea8f8a /generic/tkPlatDecls.h | |
parent | 26cb1dfcf18ed78319ed485346885111ef5c34ed (diff) | |
download | tk-macosx-cocoa-merge.zip tk-macosx-cocoa-merge.tar.gz tk-macosx-cocoa-merge.tar.bz2 |
Merge of TkAqua Cocoa portmacosx-cocoa-merge
FossilOrigin-Name: 05bd0a2cb86bb730d85069b3282e569b6c23d911
Diffstat (limited to 'generic/tkPlatDecls.h')
-rw-r--r-- | generic/tkPlatDecls.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tkPlatDecls.h b/generic/tkPlatDecls.h index 448f78a..2d4b1f1 100644 --- a/generic/tkPlatDecls.h +++ b/generic/tkPlatDecls.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: tkPlatDecls.h,v 1.19 2008/10/22 20:56:43 nijtmans Exp $ + * RCS: @(#) $Id: tkPlatDecls.h,v 1.20 2009/06/29 14:35:01 das Exp $ */ #ifndef _TKPLATDECLS @@ -110,12 +110,12 @@ EXTERN void TkMacOSXInvalClipRgns (Tk_Window tkwin); #ifndef TkMacOSXGetDrawablePort_TCL_DECLARED #define TkMacOSXGetDrawablePort_TCL_DECLARED /* 7 */ -EXTERN GWorldPtr TkMacOSXGetDrawablePort (Drawable drawable); +EXTERN void * TkMacOSXGetDrawablePort (Drawable drawable); #endif #ifndef TkMacOSXGetRootControl_TCL_DECLARED #define TkMacOSXGetRootControl_TCL_DECLARED /* 8 */ -EXTERN ControlRef TkMacOSXGetRootControl (Drawable drawable); +EXTERN void * TkMacOSXGetRootControl (Drawable drawable); #endif #ifndef Tk_MacOSXSetupTkNotifier_TCL_DECLARED #define Tk_MacOSXSetupTkNotifier_TCL_DECLARED @@ -149,8 +149,8 @@ typedef struct TkPlatStubs { void (*tkMacOSXInitAppleEvents) (Tcl_Interp * interp); /* 4 */ void (*tkGenWMConfigureEvent) (Tk_Window tkwin, int x, int y, int width, int height, int flags); /* 5 */ void (*tkMacOSXInvalClipRgns) (Tk_Window tkwin); /* 6 */ - GWorldPtr (*tkMacOSXGetDrawablePort) (Drawable drawable); /* 7 */ - ControlRef (*tkMacOSXGetRootControl) (Drawable drawable); /* 8 */ + void * (*tkMacOSXGetDrawablePort) (Drawable drawable); /* 7 */ + void * (*tkMacOSXGetRootControl) (Drawable drawable); /* 8 */ void (*tk_MacOSXSetupTkNotifier) (void); /* 9 */ int (*tk_MacOSXIsAppInFront) (void); /* 10 */ #endif /* AQUA */ |