mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Add some includes to fix part of building. (Adopt me)
svn path=/trunk/; revision=3650
This commit is contained in:
parent
7e51468aab
commit
e8f680ecbb
3 changed files with 34 additions and 1 deletions
|
@ -1,3 +1,19 @@
|
||||||
|
/*
|
||||||
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
|
* PROJECT: ReactOS kernel
|
||||||
|
* FILE: drivers/dd/sound/dsp.c
|
||||||
|
* PURPOSE: Digital Signal Processing ?
|
||||||
|
* PROGRAMMER: Snatched from ?
|
||||||
|
*
|
||||||
|
* UPDATE HISTORY:
|
||||||
|
* ??/??/??: Created
|
||||||
|
* 10/23/02: Steven Edwards (Steven_Ed4153@yahoo.com)
|
||||||
|
* Minor build fix
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "dsp.h"
|
||||||
|
#include "sb16.h"
|
||||||
|
|
||||||
/************************************
|
/************************************
|
||||||
* unsigned char read_dsp(void)
|
* unsigned char read_dsp(void)
|
||||||
*
|
*
|
||||||
|
|
|
@ -13,5 +13,5 @@ unsigned short base;
|
||||||
unsigned char irq,dma8,dma16;
|
unsigned char irq,dma8,dma16;
|
||||||
unsigned char read_dsp(unsigned short base);
|
unsigned char read_dsp(unsigned short base);
|
||||||
void write_dsp(unsigned short base,unsigned char data);
|
void write_dsp(unsigned short base,unsigned char data);
|
||||||
sb_status detect_dsp(SB16* sb16);
|
//sb_status detect_dsp(SB16* sb16);
|
||||||
sb_status reset_dsp(unsigned short base_address);
|
sb_status reset_dsp(unsigned short base_address);
|
||||||
|
|
|
@ -1,3 +1,20 @@
|
||||||
|
/*
|
||||||
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
|
* PROJECT: ReactOS kernel
|
||||||
|
* FILE: drivers/dd/sound/mixer.c
|
||||||
|
* PURPOSE: Wave Mixer?
|
||||||
|
* PROGRAMMER: ?
|
||||||
|
*
|
||||||
|
* UPDATE HISTORY:
|
||||||
|
* ??/??/??: Created
|
||||||
|
* 10/23/02: Steven Edwards (Steven_Ed4153@yahoo.com)
|
||||||
|
* Minor build fixes
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "dsp.h"
|
||||||
|
#include "sb16.h"
|
||||||
|
#include "mixer.h"
|
||||||
|
|
||||||
unsigned char read_mixer(unsigned short base,unsigned char reg)
|
unsigned char read_mixer(unsigned short base,unsigned char reg)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue