summaryrefslogtreecommitdiffstats
path: root/generic/tkbltStubInit.c
diff options
context:
space:
mode:
authorAdrián Medraño Calvo <adrian@medranocalvo.com>2017-07-18 09:10:30 (GMT)
committerAdrián Medraño Calvo <adrian@medranocalvo.com>2017-07-18 09:10:30 (GMT)
commit71312d1e172edf9c37e7a16ab881980523d5babd (patch)
treec53477f175de027634a7cc2364d0dd2f26d24001 /generic/tkbltStubInit.c
parentce90eafc809554ad9243f6f2dbacdb41474c9fe5 (diff)
downloadblt-71312d1e172edf9c37e7a16ab881980523d5babd.zip
blt-71312d1e172edf9c37e7a16ab881980523d5babd.tar.gz
blt-71312d1e172edf9c37e7a16ab881980523d5babd.tar.bz2
Better align with TEA's expected file layout
TEA is quite picky about packages placing their sources in the generic/, unix/, etc. directories. An immediate benefit of this change is support for building in a separate directory.
Diffstat (limited to 'generic/tkbltStubInit.c')
-rw-r--r--generic/tkbltStubInit.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/generic/tkbltStubInit.c b/generic/tkbltStubInit.c
new file mode 100644
index 0000000..354b7f1
--- /dev/null
+++ b/generic/tkbltStubInit.c
@@ -0,0 +1,30 @@
+#include "tkbltVector.h"
+
+/* !BEGIN!: Do not edit below this line. */
+
+const TkbltStubs tkbltStubs = {
+ TCL_STUB_MAGIC,
+ 0,
+ Blt_CreateVector, /* 0 */
+ Blt_CreateVector2, /* 1 */
+ Blt_DeleteVectorByName, /* 2 */
+ Blt_DeleteVector, /* 3 */
+ Blt_GetVector, /* 4 */
+ Blt_GetVectorFromObj, /* 5 */
+ Blt_ResetVector, /* 6 */
+ Blt_ResizeVector, /* 7 */
+ Blt_VectorExists, /* 8 */
+ Blt_VectorExists2, /* 9 */
+ Blt_AllocVectorId, /* 10 */
+ Blt_GetVectorById, /* 11 */
+ Blt_SetVectorChangedProc, /* 12 */
+ Blt_FreeVectorId, /* 13 */
+ Blt_NameOfVectorId, /* 14 */
+ Blt_NameOfVector, /* 15 */
+ Blt_ExprVector, /* 16 */
+ Blt_InstallIndexProc, /* 17 */
+ Blt_VecMin, /* 18 */
+ Blt_VecMax, /* 19 */
+};
+
+/* !END!: Do not edit above this line. */