Added NCR Business Audio MCA card (Windows Sound System compatible) and its copyright information
26 lines
710 B
C
26 lines
710 B
C
/*
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
* running old operating systems and software designed for IBM
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
* system designs based on the PCI bus.
|
|
*
|
|
* This file is part of the 86Box distribution.
|
|
*
|
|
* Windows Sound System emulation.
|
|
*
|
|
* Version: @(#)snd_wss.c 1.0.0 2018/08/11
|
|
*
|
|
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
|
* TheCollector1995, <mariogplayer@gmail.com>
|
|
*
|
|
* Copyright 2012-2018 Sarah Walker.
|
|
* Copyright 2018 TheCollector1995.
|
|
*/
|
|
#ifndef SND_WSS_H
|
|
# define SND_WSS_H
|
|
|
|
extern const device_t wss_device;
|
|
extern const device_t ncr_business_audio_device;
|
|
|
|
#endif /*SND_WSS_H*/
|