home *** CD-ROM | disk | FTP | other *** search
/ PC Loisirs 18 / cd.iso / sharewar / mikm202 / source / include / vc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-18  |  511 b   |  29 lines

  1. #ifndef VC_H
  2. #define VC_H
  3.  
  4. #include "mtypes.h"
  5. #include "mloader.h"
  6. #include "mdriver.h"
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12. BOOL    VC_Init(void);
  13. void    VC_Exit(void);
  14.  
  15. void    VC_PlayStart(void);
  16. void    VC_PlayStop(void);
  17.  
  18. WORD    VC_SampleLoad(FILE *fp,ULONG size,ULONG reppos,ULONG repend,UWORD flags);
  19. void    VC_SampleUnload(WORD handle);
  20.  
  21. void    VC_WriteSamples(char *buf,UWORD todo);
  22. UWORD   VC_WriteBytes(char *buf,UWORD todo);
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27.  
  28. #endif
  29.