diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-12 21:17:18 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-12 21:17:18 (GMT) |
commit | c7a20762743c94893cd815bed31fd8c83ee86b12 (patch) | |
tree | 721635fa5dd1342645e7396857f1587d64863602 /generic/tclIntPlatDecls.h | |
parent | 7a6d97a527bd8148991a5a5da76fb6f75abd687e (diff) | |
parent | a023aca95e9b16b2d3fb63919b5f25f6279fd3b0 (diff) | |
download | tcl-c7a20762743c94893cd815bed31fd8c83ee86b12.zip tcl-c7a20762743c94893cd815bed31fd8c83ee86b12.tar.gz tcl-c7a20762743c94893cd815bed31fd8c83ee86b12.tar.bz2 |
[Bug 3514475]: remove TclpGetTimeZone and TclpGetTZName
Diffstat (limited to 'generic/tclIntPlatDecls.h')
-rw-r--r-- | generic/tclIntPlatDecls.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/generic/tclIntPlatDecls.h b/generic/tclIntPlatDecls.h index a222403..bea9037 100644 --- a/generic/tclIntPlatDecls.h +++ b/generic/tclIntPlatDecls.h @@ -169,8 +169,7 @@ EXTERN void TclWinAddProcess(HANDLE hProcess, DWORD id); /* Slot 21 is reserved */ /* 22 */ EXTERN TclFile TclpCreateTempFile(const char *contents); -/* 23 */ -EXTERN char * TclpGetTZName(int isdst); +/* Slot 23 is reserved */ /* 24 */ EXTERN char * TclWinNoBackslash(char *path); /* Slot 25 is reserved */ @@ -324,7 +323,7 @@ typedef struct TclIntPlatStubs { void (*tclWinAddProcess) (HANDLE hProcess, DWORD id); /* 20 */ void (*reserved21)(void); TclFile (*tclpCreateTempFile) (const char *contents); /* 22 */ - char * (*tclpGetTZName) (int isdst); /* 23 */ + void (*reserved23)(void); char * (*tclWinNoBackslash) (char *path); /* 24 */ void (*reserved25)(void); void (*tclWinSetInterfaces) (int wide); /* 26 */ @@ -484,8 +483,7 @@ extern const TclIntPlatStubs *tclIntPlatStubsPtr; /* Slot 21 is reserved */ #define TclpCreateTempFile \ (tclIntPlatStubsPtr->tclpCreateTempFile) /* 22 */ -#define TclpGetTZName \ - (tclIntPlatStubsPtr->tclpGetTZName) /* 23 */ +/* Slot 23 is reserved */ #define TclWinNoBackslash \ (tclIntPlatStubsPtr->tclWinNoBackslash) /* 24 */ /* Slot 25 is reserved */ |