summaryrefslogtreecommitdiffstats
path: root/src/bltVecInt.h
diff options
context:
space:
mode:
authorjoye <joye>2014-01-17 16:06:16 (GMT)
committerjoye <joye>2014-01-17 16:06:16 (GMT)
commit6cd8cfd53dd4383bd48e2d45aeec5844b3b7179e (patch)
treeb7549350e28bed07b281b87b8f6d9e9e199b1e8e /src/bltVecInt.h
parentb12e4c0676983f1b73b233be00fd8987033752fe (diff)
downloadblt-6cd8cfd53dd4383bd48e2d45aeec5844b3b7179e.zip
blt-6cd8cfd53dd4383bd48e2d45aeec5844b3b7179e.tar.gz
blt-6cd8cfd53dd4383bd48e2d45aeec5844b3b7179e.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltVecInt.h')
-rw-r--r--src/bltVecInt.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/bltVecInt.h b/src/bltVecInt.h
index a44282f..4eb4b7f 100644
--- a/src/bltVecInt.h
+++ b/src/bltVecInt.h
@@ -55,9 +55,9 @@
#define FFT_SPECTRUM (1<<2)
typedef struct {
- Blt_HashTable vectorTable; /* Table of vectors */
- Blt_HashTable mathProcTable; /* Table of vector math functions */
- Blt_HashTable indexProcTable;
+ Tcl_HashTable vectorTable; /* Table of vectors */
+ Tcl_HashTable mathProcTable; /* Table of vector math functions */
+ Tcl_HashTable indexProcTable;
Tcl_Interp *interp;
unsigned int nextId;
} VectorInterpData;
@@ -109,7 +109,7 @@ typedef struct {
Tcl_Interp *interp; /* Interpreter associated with the
* vector */
- Blt_HashEntry *hashPtr; /* If non-NULL, pointer in a hash table to
+ Tcl_HashEntry *hashPtr; /* If non-NULL, pointer in a hash table to
* track the vectors in use. */
Tcl_FreeProc *freeProc; /* Address of procedure to call to release
@@ -183,11 +183,11 @@ typedef struct {
} \
}
-extern void Blt_Vec_InstallSpecialIndices(Blt_HashTable *tablePtr);
+extern void Blt_Vec_InstallSpecialIndices(Tcl_HashTable *tablePtr);
-extern void Blt_Vec_InstallMathFunctions(Blt_HashTable *tablePtr);
+extern void Blt_Vec_InstallMathFunctions(Tcl_HashTable *tablePtr);
-extern void Blt_Vec_UninstallMathFunctions(Blt_HashTable *tablePtr);
+extern void Blt_Vec_UninstallMathFunctions(Tcl_HashTable *tablePtr);
extern VectorInterpData *Blt_Vec_GetInterpData (Tcl_Interp *interp);