diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-12-28 11:32:40 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-12-28 11:32:40 (GMT) |
commit | 69be965a23d98385d4acac0644ae83c5c24c1662 (patch) | |
tree | d41159646dded88795b6bf902f40a08246fb056b /win/tclWinInt.h | |
parent | 3408294224c7b4208ce601753a2180879b41e6ca (diff) | |
download | tcl-69be965a23d98385d4acac0644ae83c5c24c1662.zip tcl-69be965a23d98385d4acac0644ae83c5c24c1662.tar.gz tcl-69be965a23d98385d4acac0644ae83c5c24c1662.tar.bz2 |
change ClientData -> void * in a lot of places (mainly header files)
Diffstat (limited to 'win/tclWinInt.h')
-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 cf85bbb..65eb400 100644 --- a/win/tclWinInt.h +++ b/win/tclWinInt.h @@ -96,7 +96,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; @@ -123,7 +123,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 |