diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-06-24 20:06:31 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-06-24 20:06:31 (GMT) |
commit | aee2d45ff2019fb52599d3c022b2acfa680d96de (patch) | |
tree | 3a707321e5377bee56e9725d5fff362d0b6fede3 /win | |
parent | c79b2bb1528dea61e5fd0eaa48d2879e782b22f3 (diff) | |
parent | 17e23452bfe9efb1a43b841b47af20b29e53d788 (diff) | |
download | tcl-aee2d45ff2019fb52599d3c022b2acfa680d96de.zip tcl-aee2d45ff2019fb52599d3c022b2acfa680d96de.tar.gz tcl-aee2d45ff2019fb52599d3c022b2acfa680d96de.tar.bz2 |
Merge 8.6
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinInt.h b/win/tclWinInt.h index 52a9522..1b6e606 100644 --- a/win/tclWinInt.h +++ b/win/tclWinInt.h @@ -76,7 +76,7 @@ typedef struct TclPipeThreadInfo { * to do read/write operation. Additionally * used as signal to stop (state set to -1) */ volatile LONG state; /* Indicates current state of the thread */ - ClientData clientData; /* Referenced data of the main thread */ + void *clientData; /* Referenced data of the main thread */ HANDLE evWakeUp; /* Optional wake-up event worker set by shutdown */ } TclPipeThreadInfo; @@ -103,7 +103,7 @@ typedef struct TclPipeThreadInfo { MODULE_SCOPE TclPipeThreadInfo * TclPipeThreadCreateTI(TclPipeThreadInfo **pipeTIPtr, - ClientData clientData, HANDLE wakeEvent); + void *clientData, HANDLE wakeEvent); MODULE_SCOPE int TclPipeThreadWaitForSignal(TclPipeThreadInfo **pipeTIPtr); static inline void |