home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 534.lha / NoFragLib / nofrag_lib.fd < prev    next >
Text File  |  1991-08-08  |  1KB  |  35 lines

  1. #ifndef CLIB_NOFRAG_PROTOS_H
  2. #define CLIB_NOFRAG_PROTOS_H 1
  3.  
  4. /*-- AutoRev header do NOT edit!
  5. *
  6. *   Program         :   nofrag_protos.h
  7. *   Copyright       :   © 1991 Jaba Development
  8. *   Author          :   Jan van den Baard
  9. *   Creation Date   :   06-Apr-91
  10. *   Current version :   2.1
  11. *   Translator      :   Several
  12. *
  13. *   REVISION HISTORY
  14. *
  15. *   Date          Version         Comment
  16. *   ---------     -------         ------------------------------------------
  17. *   19-May-91     2.1             Added 'Vec' routines.
  18. *   06-Apr-91     1.1             Initial version!
  19. *
  20. *-- REV_END --*/
  21.  
  22. #ifndef LIBRARIES_NOFRAG_H
  23. #include <libraries/nofrag.h>
  24. #endif
  25.  
  26. /*--- version 1.1 names. ---*/
  27. struct MemoryChain *GetMemoryChain(ULONG blocksize);
  28. void *AllocItem(struct MemoryChain *chain, ULONG size, ULONG requirements);
  29. void FreeItem(struct MemoryChain *chain, void *memptr, ULONG size);
  30. void FreeMemoryChain(struct MemoryChain *chain, ULONG all);
  31. /*--- version 2.1 names. ---*/
  32. void *AllocVecItem(struct MemoryChain *chain, ULONG size, ULONG requirements);
  33. void FreeVecItem(struct MemoryChain *chain, void *memptr);
  34. #endif
  35.