diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-09-19 15:09:38 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-09-19 15:09:38 (GMT) |
| commit | 3147adf34639c8a4c2aa49422c70fafb3b59c722 (patch) | |
| tree | 2be4f7f0208e3b7d4f00a71c663895d40a1c595c /win/tclWinTime.c | |
| parent | ddd29dbbd30d295df6a6f87ded3fd8b618d957e2 (diff) | |
| download | tcl-3147adf34639c8a4c2aa49422c70fafb3b59c722.zip tcl-3147adf34639c8a4c2aa49422c70fafb3b59c722.tar.gz tcl-3147adf34639c8a4c2aa49422c70fafb3b59c722.tar.bz2 | |
Some more *A() -> *W() Win32 API changes, making Unicode calls Explicit.
Diffstat (limited to 'win/tclWinTime.c')
| -rw-r--r-- | win/tclWinTime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c index 7de0941..33d87a7 100644 --- a/win/tclWinTime.c +++ b/win/tclWinTime.c @@ -544,8 +544,8 @@ NativeGetMicroseconds(void) DWORD id; InitializeCriticalSection(&timeInfo.cs); - timeInfo.readyEvent = CreateEvent(NULL, FALSE, FALSE, NULL); - timeInfo.exitEvent = CreateEvent(NULL, FALSE, FALSE, NULL); + timeInfo.readyEvent = CreateEventW(NULL, FALSE, FALSE, NULL); + timeInfo.exitEvent = CreateEventW(NULL, FALSE, FALSE, NULL); timeInfo.calibrationThread = CreateThread(NULL, 256, CalibrationThread, (LPVOID) NULL, 0, &id); SetThreadPriority(timeInfo.calibrationThread, |
