home *** CD-ROM | disk | FTP | other *** search
/ AMIGA PD 1 / AMIGA-PD-1.iso / Programme_zum_Heft / Programmieren / Kurztests / DiceC / include / pd / dynamic.h < prev    next >
C/C++ Source or Header  |  1994-02-01  |  592b  |  35 lines

  1.  
  2. /*
  3.  *  DYNAMIC.H
  4.  *
  5.  *  dynamic.library prototypes
  6.  */
  7.  
  8. #ifndef PD_DYNAMIC_H
  9. #define PD_DYNAMIC_H
  10.  
  11. #ifndef UTILITY_TAGITEM_H
  12. #include <utility/tagitem.h>
  13. #endif
  14.  
  15. #ifndef DYNAMIC_COMPILE
  16.  
  17. void *GetHyperSymbol(const char *, struct TagItem *);
  18. void *RelsHyperSymbol(void *, struct TagItem *);
  19. void FlushHyperLib(void);
  20. void LockHyperLib(void);
  21. void UnLockHyperLib(void);
  22. void ScanHyperLib(void);
  23. void SetHyperDebug(long,long);
  24.  
  25. void *GetHyperSymbolTags(const char *, Tag tag1, ...);
  26. void *RelsHyperSymbolTags(void *, Tag tag1, ...);
  27.  
  28. #endif
  29.  
  30. #define DT_END        0
  31. #define DT_TYPE     1
  32.  
  33. #endif
  34.  
  35.