File: itkMacTclCode.r

package info (click to toggle)
itcl3.0 3.0.1-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 10,128 kB
  • ctags: 3,519
  • sloc: tcl: 32,416; ansic: 12,683; sh: 3,917; makefile: 692; awk: 273; perl: 265
file content (29 lines) | stat: -rw-r--r-- 786 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 *  itkMacTclCode.r
 *
 *  This file includes the Itk code that is needed to startup Itk.
 *  It is to be included either in the resource fork of the shared library, or in the
 *  resource fork of the application for a statically bound application.
 *
 *  Jim Ingham
 *  Lucent Technologies 1996
 *
 */
 

#define ITK_LIBRARY_RESOURCES 3500

/* 
 * We now load the Itk library into the resource fork of the application.
 */

read 'TEXT' (ITK_LIBRARY_RESOURCES+1, "itk", purgeable) 
	"::library:itk.tcl";
read 'TEXT' (ITK_LIBRARY_RESOURCES+3, "Itk_Archetype", purgeable) 
	"::library:Archetype.itk";
read 'TEXT' (ITK_LIBRARY_RESOURCES+4, "Itk_Widget", purgeable) 
	"::library:Widget.itk";
read 'TEXT' (ITK_LIBRARY_RESOURCES+5, "Itk_Toplevel", purgeable) 
	"::library:Toplevel.itk";