raw.c
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)raw.c 1.2 99/12/19 Copyright 1998,1999 Heiko Eissfeldt */
  2. #ifndef lint
  3. static char     sccsid[] =
  4. "@(#)raw.c 1.2 99/12/19 Copyright 1998,1999 Heiko Eissfeldt";
  5. #endif
  6. #include "config.h"
  7. #include "sndfile.h"
  8. static int InitSound __PR(( void ));
  9. static int InitSound ( )
  10. {
  11.   return 0;
  12. }
  13. static int ExitSound __PR(( void ));
  14. static int ExitSound ( )
  15. {
  16.   return 0;
  17. }
  18. static unsigned long GetHdrSize __PR(( void ));
  19. static unsigned long GetHdrSize( )
  20. {
  21.   return 0L;
  22. }
  23. struct soundfile rawsound =
  24. {
  25.   (int (*) __PR((int audio, long channels,
  26.                  unsigned long myrate, long nBitsPerSample,
  27.                  unsigned long expected_bytes))) InitSound,
  28.   (int (*) __PR((int audio, unsigned long nBytesDone))) ExitSound,
  29.   GetHdrSize,
  30.   1 /* needs big endian samples */
  31. };