reactos/drivers/wdm/audio/backpln/portcls/dll.cpp
Amine Khaldi 0ee830d7a4 * Create a branch for USB experiments.
svn path=/branches/usb-experiments/; revision=72629
2016-09-09 15:11:19 +00:00

36 lines
469 B
C++

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS Kernel Streaming
* FILE: drivers/wdm/audio/backpln/portcls/dll.cpp
* PURPOSE: portcls generic dispatcher
* PROGRAMMER: Andrew Greenwood
*/
#include "private.hpp"
#ifndef YDEBUG
#define NDEBUG
#endif
#include <debug.h>
extern
"C"
ULONG
NTAPI
DllInitialize(ULONG Unknown)
{
return 0;
}
extern
"C"
{
ULONG
NTAPI
DllUnload()
{
return 0;
}
}