qemu/include/hw/audio/soundhw.h
<<
>>
Prefs
   1#ifndef HW_AUDIO_H
   2#define HW_AUDIO_H
   3
   4void isa_register_soundhw(const char *name, const char *descr,
   5                          int (*init_isa)(ISABus *bus));
   6
   7void pci_register_soundhw(const char *name, const char *descr,
   8                          int (*init_pci)(PCIBus *bus));
   9
  10void soundhw_init(void);
  11void select_soundhw(const char *optarg);
  12
  13#endif
  14