home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / IncPOS.lzx / proto / pIFFParse2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-18  |  1.5 KB  |  51 lines

  1. #ifndef __INC_POS_PROTO_PIFFPARSE2_H
  2. #define __INC_POS_PROTO_PIFFPARSE2_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Papajewski
  9.  $DAT >>pIFFParse2.h<<   27 Jan 1997    17:30:52 - (C) ProDAD
  10. *******************************************************************/
  11.  
  12. #ifndef __INC_POS_PEXEC_LIST_H
  13. #include "p:pExec/List.h"
  14. #endif
  15.  
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21.  
  22. VOID pOS_CloseIFF(_R_A0 __ARID__ struct pOS_IFFHandle*);
  23. __ARID__ struct pOS_IFFHandle* pOS_OpenIFFA(_R_A0 const struct pOS_TagItem*);
  24.  
  25.  
  26. const struct pOS_IFFLocContext* pOS_CurrentChunk(_R_A0 struct pOS_IFFHandle*);
  27. ULONG pOS_ReadChunkBytes(_R_A0 struct pOS_IFFHandle*,_R_A1 VOID*,_R_D0 ULONG);
  28. ULONG pOS_WriteChunkBytes(_R_A0 struct pOS_IFFHandle*,_R_A1 VOID*,_R_D0 ULONG);
  29. SLONG pOS_PopChunk(_R_A0 struct pOS_IFFHandle*);
  30. SLONG pOS_PushChunk(_R_A0 struct pOS_IFFHandle*,_R_D0 ULONG,_R_D1 ULONG,_R_D2 SLONG);
  31.  
  32. const struct pOS_IFFStoredProp* pOS_FindProp(_R_A0 struct pOS_IFFHandle*,_R_D0 ULONG,_R_D1 ULONG);
  33. SLONG pOS_ParseIFF(_R_A0 struct pOS_IFFHandle*,_R_D0 ULONG);
  34. SLONG pOS_StopChunkA(_R_A0 struct pOS_IFFHandle*,_R_A1 const struct pOS_TagItem*);
  35. SLONG pOS_PropChunkA(_R_A0 struct pOS_IFFHandle*,_R_A1 const struct pOS_TagItem*);
  36.  
  37.  
  38.  
  39. __ARID__ struct pOS_IFFHandle* pOS_OpenIFF(ULONG tag,...);
  40. SLONG pOS_StopChunk(_R_A0 struct pOS_IFFHandle*,ULONG,...);
  41. SLONG pOS_PropChunk(_R_A0 struct pOS_IFFHandle*,ULONG,...);
  42.  
  43.  
  44.  
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48.  
  49.  
  50. #endif
  51.