82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
----------------------
Create a Tcl command that calls an existing C command as a Tcl command.
Synopsis:
$handle linktclcommand <CSymbol> <TclCommandName>
$handle add_include_path
------------------------
Search additional paths for header files
Synopsis:
$handle add_include_path <dir...>
$handle add_library_path
------------------------
Search additional paths for libraries
Synopsis:
$handle add_library_path <dir...>
$handle add_library
-------------------
Link to an additional library
Synopsis:
$handle add_library <library...>
$handle code
------------
Return text of what code will be compiled when the _go_ subcommand is called.
Synposis:
$handle code
|