Differences From Artifact [ec5e95c9cc]:
- File generic/tclIOSock.c — part of check-in [28a7d957c7] at 2025-08-17 11:25:55 on branch c-std-update — More bools and pieces (user: dkf size: 8952)
To Artifact [487c293f58]:
- File generic/tclIOSock.c — part of check-in [dce49c4e92] at 2025-10-06 12:05:08 on branch c-std-update — merge trunk (user: dkf size: 9059) [more...]
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + + |
#include "tclInt.h"
#if defined(_WIN32)
/*
* On Windows, we need to do proper Unicode->UTF-8 conversion.
*/
#if defined (__clang__) && (__clang_major__ > 20)
#pragma clang diagnostic ignored "-Wc++-keyword"
#endif
typedef struct ThreadSpecificData_Sockets {
bool initialized;
Tcl_DString errorMsg; /* UTF-8 encoded error-message */
} ThreadSpecificData;
static Tcl_ThreadDataKey dataKey;
|
| ︙ |