2006-12-10 15:09:46 +00:00
|
|
|
/*
|
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/dll.cpp
|
2009-04-03 17:06:16 +00:00
|
|
|
* PURPOSE: portcls generic dispatcher
|
|
|
|
* PROGRAMMER: Andrew Greenwood
|
|
|
|
*/
|
2006-12-10 15:09:46 +00:00
|
|
|
|
2009-09-11 06:33:55 +00:00
|
|
|
#include "private.hpp"
|
2006-12-10 15:09:46 +00:00
|
|
|
|
2014-01-03 17:10:56 +00:00
|
|
|
#define NDEBUG
|
|
|
|
#include <debug.h>
|
|
|
|
|
2012-12-23 21:59:45 +00:00
|
|
|
extern
|
|
|
|
"C"
|
2009-04-03 17:06:16 +00:00
|
|
|
ULONG
|
|
|
|
NTAPI
|
2006-12-10 15:09:46 +00:00
|
|
|
DllInitialize(ULONG Unknown)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-11 06:33:55 +00:00
|
|
|
extern
|
|
|
|
"C"
|
|
|
|
{
|
2009-04-03 17:06:16 +00:00
|
|
|
ULONG
|
|
|
|
NTAPI
|
2009-09-11 06:33:55 +00:00
|
|
|
DllUnload()
|
2006-12-10 15:09:46 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2009-09-11 06:33:55 +00:00
|
|
|
}
|