summaryrefslogtreecommitdiffstats
path: root/win/tclWinInt.h
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2002-10-29 14:17:56 (GMT)
committervincentdarley <vincentdarley>2002-10-29 14:17:56 (GMT)
commita04cf8ef01358dba752718a48cde2847e3e98ad0 (patch)
tree0b3d945a96ad90618611731efeadbd12b3896361 /win/tclWinInt.h
parentfb6c631d984e1edda14aa4a7494f6262192cf788 (diff)
downloadtcl-a04cf8ef01358dba752718a48cde2847e3e98ad0.zip
tcl-a04cf8ef01358dba752718a48cde2847e3e98ad0.tar.gz
tcl-a04cf8ef01358dba752718a48cde2847e3e98ad0.tar.bz2
comments added
Diffstat (limited to 'win/tclWinInt.h')
-rw-r--r--win/tclWinInt.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/win/tclWinInt.h b/win/tclWinInt.h
index eb89c35..b6f144d 100644
--- a/win/tclWinInt.h
+++ b/win/tclWinInt.h
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinInt.h,v 1.16 2002/06/13 09:40:02 vincentdarley Exp $
+ * RCS: @(#) $Id: tclWinInt.h,v 1.17 2002/10/29 14:17:58 vincentdarley Exp $
*/
#ifndef _TCLWININT
@@ -89,6 +89,13 @@ typedef struct TclWinProcs {
CONST TCHAR *, DWORD, WCHAR *, TCHAR **);
BOOL (WINAPI *setCurrentDirectoryProc)(CONST TCHAR *);
BOOL (WINAPI *setFileAttributesProc)(CONST TCHAR *, DWORD);
+ /*
+ * These two function pointers will only be set when
+ * Tcl_FindExecutable is called. If you don't ever call that
+ * function, the application will crash whenever WinTcl tries to call
+ * functions through these null pointers. That is not a bug in Tcl
+ * -- Tcl_FindExecutable is obligatory in recent Tcl releases.
+ */
BOOL (WINAPI *getFileAttributesExProc)(CONST TCHAR *,
GET_FILEEX_INFO_LEVELS, LPVOID);
BOOL (WINAPI *createHardLinkProc)(CONST TCHAR*, CONST TCHAR*,