Differences From Artifact [78ff5be79c]:
- File kitdll/buildsrc/kitdll-0.0/vfs_kitdll_data.c — part of check-in [e4de9a2934] at 2010-09-26 04:51:35 on branch trunk — Updated to create loadable filesystem by including C-Tcl interface when creating C version of directory tree (dir2c) (user: rkeene, size: 6378) [annotate] [blame] [check-ins using]
To Artifact [3d239d88d7]:
- File
kitdll/buildsrc/kitdll-0.0/vfs_kitdll_data.c
— part of check-in
[b11b735302]
at
2010-09-29 23:15:37
on branch trunk
— Created GNU autoconf script for KitDLL
Made KitDLL build a shared object
Added test driver (user: rkeene, size: 6409) [annotate] [blame] [check-ins using]
1 | #include <tcl.h> | > > | > | 1 2 3 4 5 6 7 8 9 10 11 12 | #include <tcl.h> #ifdef HAVE_STDLIB_H # include <stdlib.h> #endif typedef struct kitdll_data *(cmd_getData_t)(const char *, unsigned long); typedef unsigned long (cmd_getChildren_t)(const char *, unsigned long *, unsigned long); /* Your implementation must provide these */ static cmd_getData_t *getCmdData(const char *hashkey); static cmd_getChildren_t *getCmdChildren(const char *hashkey); |
︙ | ︙ |