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

  1. #ifndef __INC_POS_PROTO_PAUDIO2_H
  2. #define __INC_POS_PROTO_PAUDIO2_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Burkarth
  9.  $DAT >>pAudio2.h<<   17 Dec 1996    13:11:16 - (C) ProDAD
  10. *******************************************************************/
  11. #ifndef __INC_POS_PEXEC_LIST_H
  12. #include <pExec/List.h>
  13. #endif
  14.  
  15.  
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21.  
  22. VOID pOS_FreeAudioMap(_R_A0 __ARID__ struct pOS_AudioMap*);
  23. __ARID__ struct pOS_AudioMap* pOS_AllocAudioMapA(_R_D0 ULONG channel,_R_A0 const struct pOS_TagItem*);
  24. ULONG pOS_PlayChannelA(_R_A0 const struct pOS_AudioMap*,_R_A1 const struct pOS_TagItem*);
  25. VOID pOS_FreeChannel(_R_D0 __ARID__ ULONG channel);
  26. __ARID__ ULONG pOS_AllocChannelA(_R_A0 const struct pOS_TagItem*);
  27.  
  28.  
  29.  
  30.  
  31.  
  32. __ARID__ struct pOS_AudioMap* pOS_AllocAudioMap(_R_D0 ULONG channel,ULONG tag,...);
  33. ULONG pOS_PlayChannel(_R_A0 const struct pOS_AudioMap*,ULONG tag,...);
  34. __ARID__ ULONG pOS_AllocChannel(ULONG tag,...);
  35.  
  36.  
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40.  
  41. #endif
  42.