diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-26 13:15:07 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-26 13:15:07 (GMT) |
commit | b646dee7570b4d082ceac3d8a05e48f45eacbfc5 (patch) | |
tree | 3ac49ba01df01ed987ab98e03f908435a0256200 /generic/tkInt.h | |
parent | 36091348f8af6507a2beef8d03568d26b45bd2c8 (diff) | |
download | tk-b646dee7570b4d082ceac3d8a05e48f45eacbfc5.zip tk-b646dee7570b4d082ceac3d8a05e48f45eacbfc5.tar.gz tk-b646dee7570b4d082ceac3d8a05e48f45eacbfc5.tar.bz2 |
Attempt to fix [Bug 919066] by allowing the code that creates the region
much more knowledge of the platform functions available to it.
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 4909404..58482f9 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: $Id: tkInt.h,v 1.63 2004/10/05 22:04:44 hobbs Exp $ + * RCS: $Id: tkInt.h,v 1.64 2004/10/26 13:15:09 dkf Exp $ */ #ifndef _TKINT @@ -1176,6 +1176,11 @@ EXTERN void TkCreateExitHandler _ANSI_ARGS_((Tcl_ExitProc *proc, EXTERN void TkDeleteExitHandler _ANSI_ARGS_((Tcl_ExitProc *proc, ClientData clientData)); EXTERN Tcl_ExitProc TkFinalize; +EXTERN void TkpBuildRegionFromAlphaData _ANSI_ARGS_(( + TkRegion region, unsigned int x, unsigned int y, + unsigned int width, unsigned int height, + unsigned char *dataPtr, unsigned int pixelStride, + unsigned int lineStride)); /* * Unsupported commands. |