Rev | Line | |
---|
[2] | 1 | /*
|
---|
| 2 | ** A small container to hold a set of user block declaration
|
---|
| 3 | **
|
---|
| 4 | * Written by Paul Lebrun, Aug 2001
|
---|
| 5 | */
|
---|
| 6 |
|
---|
| 7 | typedef struct _aUserBlockDecl {
|
---|
| 8 | int blkNum;
|
---|
| 9 | char *title;
|
---|
| 10 | } aUserBlockDecl;
|
---|
| 11 |
|
---|
| 12 | typedef struct _allMCFIO_UserBlockDecl {
|
---|
| 13 | int num;
|
---|
| 14 | int numPreAlloc;
|
---|
| 15 | aUserBlockDecl **decls;
|
---|
| 16 | }allMCFIO_UserBlockDecl ;
|
---|
| 17 |
|
---|
| 18 | extern allMCFIO_UserBlockDecl *AllMCFIO_UserBlockDecl;
|
---|
| 19 |
|
---|
| 20 | /*
|
---|
| 21 | ** Internally used in mcfio. Return NULL if not on the list,
|
---|
| 22 | ** otherwise return the point to the relevant title block.
|
---|
| 23 | */
|
---|
| 24 | char *mcfioC_UserBlockDescript(int blkNum);
|
---|
| 25 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.