mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
22 lines
469 B
C++
22 lines
469 B
C++
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Kernel Streaming
|
|
* FILE: drivers/wdm/audio/backpln/portcls/miniport_fmsynth.cpp
|
|
* PURPOSE: Miniport FM Synth
|
|
* PROGRAMMER: Johannes Anderwald
|
|
*/
|
|
|
|
#include "private.hpp"
|
|
|
|
#ifndef YDEBUG
|
|
#define NDEBUG
|
|
#endif
|
|
|
|
#include <debug.h>
|
|
|
|
NTSTATUS NewMiniportFmSynth(
|
|
OUT PMINIPORT* OutMiniport,
|
|
IN REFCLSID ClassId)
|
|
{
|
|
return STATUS_UNSUCCESSFUL;
|
|
}
|