Tk Source Code

Check-in [4ad21a54]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:fix broken build on Visual Studio 9+10
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 4ad21a54530c2f8d49d96bf996434d47783a6a76
User & Date: jan.nijtmans 2012-08-05 11:59:27
Context
2012-08-06
18:35
resolve fork check-in: a115b737 user: dgp tags: trunk
2012-08-05
11:59
fix broken build on Visual Studio 9+10 check-in: 4ad21a54 user: jan.nijtmans tags: trunk
2012-08-04
10:45
merge-mark check-in: 050968e7 user: fvogel tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tkMain.c.

25
26
27
28
29
30
31






32
33
34
35
36
37
38
39
40
41
42
#	undef _UNICODE
#   else
#	define UNICODE
#	define _UNICODE
#   endif
#endif







#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include "tkInt.h"
#ifdef NO_STDLIB_H
#   include "../compat/stdlib.h"
#else
#   include <stdlib.h>
#endif

extern int TkCygwinMainEx(int, char **, Tcl_AppInitProc *, Tcl_Interp *);







>
>
>
>
>
>



<







25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

41
42
43
44
45
46
47
#	undef _UNICODE
#   else
#	define UNICODE
#	define _UNICODE
#   endif
#endif

#ifndef _WIN64
/* See [Bug 2935503]: file mtime sets wrong time */
#   define _USE_32BIT_TIME_T
#endif

#include "tkInt.h"
#include <ctype.h>
#include <stdio.h>
#include <string.h>

#ifdef NO_STDLIB_H
#   include "../compat/stdlib.h"
#else
#   include <stdlib.h>
#endif

extern int TkCygwinMainEx(int, char **, Tcl_AppInitProc *, Tcl_Interp *);