1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS Kernel Streaming 4 * FILE: drivers/wdm/audio/backpln/portcls/miniport_fmsynth.cpp 5 * PURPOSE: Miniport FM Synth 6 * PROGRAMMER: Johannes Anderwald 7 */ 8 9 #include "private.hpp" 10 11 #ifndef YDEBUG 12 #define NDEBUG 13 #endif 14 15 #include <debug.h> 16 17 NTSTATUS NewMiniportFmSynth( 18 OUT PMINIPORT* OutMiniport, 19 IN REFCLSID ClassId) 20 { 21 return STATUS_UNSUCCESSFUL; 22 } 23