2009-04-03 17:06:16 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS Kernel Streaming
|
2009-09-11 06:33:55 +00:00
|
|
|
* FILE: drivers/wdm/audio/backpln/portcls/miniport_fmsynth.cpp
|
2009-04-03 17:06:16 +00:00
|
|
|
* PURPOSE: Miniport FM Synth
|
|
|
|
* PROGRAMMER: Johannes Anderwald
|
|
|
|
*/
|
|
|
|
|
2009-09-11 06:33:55 +00:00
|
|
|
#include "private.hpp"
|
2008-12-04 18:43:42 +00:00
|
|
|
|
2014-01-03 17:10:56 +00:00
|
|
|
#ifndef YDEBUG
|
|
|
|
#define NDEBUG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <debug.h>
|
2008-12-04 18:43:42 +00:00
|
|
|
|
|
|
|
NTSTATUS NewMiniportFmSynth(
|
|
|
|
OUT PMINIPORT* OutMiniport,
|
|
|
|
IN REFCLSID ClassId)
|
|
|
|
{
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|