diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-23 18:57:42 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-23 18:57:42 (GMT) |
commit | f07f08b972be7263daae173c943d34be7bb198b2 (patch) | |
tree | 3d4e3013ed798f122605c07088aecb23c368667c /generic/tkIntDecls.h | |
parent | f2bc66b5a1771edc26e54937e80c6e84901ee411 (diff) | |
parent | 90913ce1f8b0d59e50df2ce83b0ae1d6dbba2c20 (diff) | |
download | tk-f07f08b972be7263daae173c943d34be7bb198b2.zip tk-f07f08b972be7263daae173c943d34be7bb198b2.tar.gz tk-f07f08b972be7263daae173c943d34be7bb198b2.tar.bz2 |
Merge 8.7
Diffstat (limited to 'generic/tkIntDecls.h')
-rw-r--r-- | generic/tkIntDecls.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tkIntDecls.h b/generic/tkIntDecls.h index 1174ba5..feef573 100644 --- a/generic/tkIntDecls.h +++ b/generic/tkIntDecls.h @@ -427,12 +427,12 @@ EXTERN int TkTextGetIndex(Tcl_Interp *interp, struct TkTextIndex *indexPtr); /* 160 */ EXTERN int TkTextIndexBackBytes(const struct TkText *textPtr, - const struct TkTextIndex *srcPtr, int count, - struct TkTextIndex *dstPtr); + const struct TkTextIndex *srcPtr, + Tcl_Size count, struct TkTextIndex *dstPtr); /* 161 */ EXTERN int TkTextIndexForwBytes(const struct TkText *textPtr, - const struct TkTextIndex *srcPtr, int count, - struct TkTextIndex *dstPtr); + const struct TkTextIndex *srcPtr, + Tcl_Size count, struct TkTextIndex *dstPtr); /* 162 */ EXTERN struct TkTextIndex * TkTextMakeByteIndex(TkTextBTree tree, const struct TkText *textPtr, int lineIndex, @@ -710,8 +710,8 @@ typedef struct TkIntStubs { int (*tkpTesttextCmd) (void *dummy, Tcl_Interp *interp, Tcl_Size objc, Tcl_Obj *const objv[]); /* 157 */ int (*tkSelGetSelection) (Tcl_Interp *interp, Tk_Window tkwin, Atom selection, Atom target, Tk_GetSelProc *proc, void *clientData); /* 158 */ int (*tkTextGetIndex) (Tcl_Interp *interp, struct TkText *textPtr, const char *string, struct TkTextIndex *indexPtr); /* 159 */ - int (*tkTextIndexBackBytes) (const struct TkText *textPtr, const struct TkTextIndex *srcPtr, int count, struct TkTextIndex *dstPtr); /* 160 */ - int (*tkTextIndexForwBytes) (const struct TkText *textPtr, const struct TkTextIndex *srcPtr, int count, struct TkTextIndex *dstPtr); /* 161 */ + int (*tkTextIndexBackBytes) (const struct TkText *textPtr, const struct TkTextIndex *srcPtr, Tcl_Size count, struct TkTextIndex *dstPtr); /* 160 */ + int (*tkTextIndexForwBytes) (const struct TkText *textPtr, const struct TkTextIndex *srcPtr, Tcl_Size count, struct TkTextIndex *dstPtr); /* 161 */ struct TkTextIndex * (*tkTextMakeByteIndex) (TkTextBTree tree, const struct TkText *textPtr, int lineIndex, Tcl_Size byteIndex, struct TkTextIndex *indexPtr); /* 162 */ Tcl_Size (*tkTextPrintIndex) (const struct TkText *textPtr, const struct TkTextIndex *indexPtr, char *string); /* 163 */ struct TkTextSegment * (*tkTextSetMark) (struct TkText *textPtr, const char *name, struct TkTextIndex *indexPtr); /* 164 */ |