Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-05-18 08:30:22

0001 /*
0002  * --------------------------------------------------------------------------
0003  * tclthread.h --
0004  *
0005  * Global header file for the thread extension.
0006  *
0007  * Copyright (c) 2002 ActiveState Corporation.
0008  * Copyright (c) 2002 by Zoran Vasiljevic.
0009  *
0010  * See the file "license.terms" for information on usage and redistribution
0011  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
0012  * ---------------------------------------------------------------------------
0013  */
0014 
0015 /*
0016  * Thread extension version numbers are not stored here
0017  * because this isn't a public export file.
0018  */
0019 
0020 #ifndef _TCL_THREAD_H_
0021 #define _TCL_THREAD_H_
0022 
0023 #include <tcl.h>
0024 
0025 /*
0026  * Exported from threadCmd.c file.
0027  */
0028 #ifdef __cplusplus
0029 extern "C" {
0030 #endif
0031 DLLEXPORT int Thread_Init(Tcl_Interp *interp);
0032 #ifdef __cplusplus
0033 }
0034 #endif
0035 
0036 #endif /* _TCL_THREAD_H_ */