qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

soundhw.h (448B)


      1 #ifndef HW_SOUNDHW_H
      2 #define HW_SOUNDHW_H
      3 
      4 void pci_register_soundhw(const char *name, const char *descr,
      5                           int (*init_pci)(PCIBus *bus, const char *audiodev));
      6 void deprecated_register_soundhw(const char *name, const char *descr,
      7                                  int isa, const char *typename);
      8 
      9 void soundhw_init(void);
     10 void show_valid_soundhw(void);
     11 void select_soundhw(const char *optarg, const char *audiodev);
     12 
     13 #endif