Fork me on GitHub

source: svn/trunk/Utilities/mcfio/mcfio_UserDictionary.h@ 153

Last change on this file since 153 was 3, checked in by Xavier Rouby, 16 years ago

first commit

File size: 535 bytes
RevLine 
[3]1/*
2** A small container to hold a set of user block declaration
3**
4* Written by Paul Lebrun, Aug 2001
5*/
6
7typedef struct _aUserBlockDecl {
8 int blkNum;
9 char *title;
10} aUserBlockDecl;
11
12typedef struct _allMCFIO_UserBlockDecl {
13 int num;
14 int numPreAlloc;
15 aUserBlockDecl **decls;
16}allMCFIO_UserBlockDecl ;
17
18extern 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*/
24char *mcfioC_UserBlockDescript(int blkNum);
25
Note: See TracBrowser for help on using the repository browser.