usrAudio.c
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* usrAudio.c - Audio initialization */
  2. /* Copyright 2000 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. */
  7. /*
  8. DESCRIPTION
  9. This file is used to configure and initialize the VxWorks audio support.
  10. This file is included by usrConfig.c.
  11. MAKE NO CHANGES TO THIS FILE.
  12. All BSP specific code should be added to
  13. the sysLib.c file or a sysScsi.c file in the BSP directory.  Define the
  14. macro SYS_SCSI_CONFIG to generate the call to sysScsiConfig().
  15. See usrScsiConfig for more info on the SYS_SCSI_CONFIG macro.
  16. SEE ALSO: usrExtra.c
  17. NOMANUAL
  18. */
  19. /*******************************************************************************
  20. *
  21. * usrAudioInit - initialize audio device driver
  22. *
  23. *
  24. * RETURNS: OK or ERROR.
  25. *
  26. * SEE ALSO:
  27. * .pG "I/O System, Local File Systems"
  28. */
  29. STATUS usrAudioInit (void)
  30.     {
  31.     return (OK);
  32.     }