58ea30f514
Header guard symbols should match their file name to make guard collisions less likely. Cleaned up with scripts/clean-header-guards.pl, followed by some renaming of new guard symbols picked by the script to better ones. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190315145123.28030-6-armbru@redhat.com> [Rebase to master: update include/hw/net/ne2000-isa.h]
14 lines
359 B
C
14 lines
359 B
C
#ifndef HW_SOUNDHW_H
|
|
#define HW_SOUNDHW_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
|