tclThread.h 821 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * --------------------------------------------------------------------------
  3. * tclthread.h --
  4. *
  5. * Global header file for the thread extension.
  6. *
  7. * Copyright (c) 2002 ActiveState Corporation.
  8. * Copyright (c) 2002 by Zoran Vasiljevic.
  9. *
  10. * See the file "license.terms" for information on usage and redistribution
  11. * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12. * ---------------------------------------------------------------------------
  13. */
  14. /*
  15. * Thread extension version numbers are not stored here
  16. * because this isn't a public export file.
  17. */
  18. #ifndef _TCL_THREAD_H_
  19. #define _TCL_THREAD_H_
  20. #include <tcl.h>
  21. /*
  22. * Exported from threadCmd.c file.
  23. */
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. DLLEXPORT int Thread_Init(Tcl_Interp *interp);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif /* _TCL_THREAD_H_ */