Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
484 B

  1. /* tcl.h has to appear first */
  2. %insert(runtime) %{
  3. #include <stdio.h>
  4. #include <tcl.h>
  5. #include <errno.h>
  6. #include <stdlib.h>
  7. #include <stdarg.h>
  8. #include <ctype.h>
  9. %}
  10. %insert(runtime) "swigrun.swg"; /* Common C API type-checking code */
  11. %insert(runtime) "swigerrors.swg" /* SWIG errors */
  12. %insert(runtime) "tclerrors.swg"; /* Tcl Errors */
  13. %insert(runtime) "tclapi.swg"; /* Tcl API */
  14. %insert(runtime) "tclrun.swg"; /* Tcl run-time code */