summaryrefslogtreecommitdiff
path: root/include/hw/audio/soundhw.h
blob: 119f7d78d5062f539c004d3302245c2a6566d0d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef HW_AUDIO_H
#define HW_AUDIO_H

void isa_register_soundhw(const char *name, const char *descr,
                          int (*init_isa)(ISABus *bus));

void pci_register_soundhw(const char *name, const char *descr,
                          int (*init_pci)(PCIBus *bus));

void soundhw_init(void);
void select_soundhw(const char *optarg);

#endif