Define Alias M.Z.

This commit is contained in:
cvs
2001-04-27 08:38:20 +00:00
parent 63d84a85ad
commit 092e9f21d2
6 changed files with 349 additions and 2 deletions

20
definealias.i Normal file
View File

@ -0,0 +1,20 @@
/*--------------------------------------------------------------------------
AliasList datastructure
Markus Zolliker, September 2000
copyright: see implementation file
---------------------------------------------------------------------------*/
#ifndef DEFINE_ALIAS_I
#define DEFINE_ALIAS_I
typedef struct {
void *pFirst;
} AliasList;
/*
initialize pFirst to NULL to create an empty list
*/
#endif