home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd2.bin / bbs / util / tm2ascii-1.0.lha / TM2Ascii / Source / struct.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-21  |  556 b   |  22 lines

  1. #include <exec/types.h>
  2. #include <exec/memory.h>
  3. #include <graphics/text.h>
  4. #include <prefs/prefhdr.h>
  5.  
  6. #include <proto/dos.h>
  7. #include <proto/exec.h>
  8. #include <proto/iffparse.h>
  9. #include <proto/utility.h>
  10.  
  11. #include <stdio.h>
  12. #include <stdlib.h>
  13. #include <string.h>
  14.  
  15. #include "toolmanager.h"
  16. #include "ToolManagerPrefs.h"
  17.  
  18. typedef struct Node *(*ReadNodeFuncPtr)(UBYTE *);
  19. typedef BOOL         (*WriteNodeFuncPtr)(struct IFFHandle *, UBYTE *,
  20.                                          struct Node *);
  21. typedef void         (*FreeNodeFuncPtr)(struct Node *);
  22.