Check-in [4816a85fc1]
Overview
Comment:Removed dead code
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 4816a85fc11a92182bbe8bbbd75ac3d6a5c21f35
User & Date: rkeene on 2013-09-25 04:30:34
Other Links: manifest | tags
Context
2013-09-29
23:17
Added file "tclkit.ico" to VFS check-in: 079f112af3 user: rkeene tags: trunk
2013-09-25
04:30
Removed dead code check-in: 4816a85fc1 user: rkeene tags: trunk
03:12
Allow building a TclKit on Win32 using MinGW against Tcl/Tk 8.6.1. check-in: a063fafd1f user: mistachkin tags: trunk
Changes

Modified kitsh/buildsrc/kitsh-0.0/main.c from [cac11ec6a8] to [dcb1a6f5fa].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef KITSH_NEED_WINMAIN
#include <tcl.h>

int TclKit_AppInit(Tcl_Interp *interp);

int main(int argc, char **argv) {
	Tcl_Interp *x;

	x = Tcl_CreateInterp();

	Tcl_Main(argc, argv, TclKit_AppInit);

	/* If Tcl_Main() returns, something went wrong */
	return(1);
}
#endif






<
<
<
<






1
2
3
4
5
6




7
8
9
10
11
12
#ifndef KITSH_NEED_WINMAIN
#include <tcl.h>

int TclKit_AppInit(Tcl_Interp *interp);

int main(int argc, char **argv) {




	Tcl_Main(argc, argv, TclKit_AppInit);

	/* If Tcl_Main() returns, something went wrong */
	return(1);
}
#endif