mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
36 lines
469 B
C++
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;
|
|
}
|
|
}
|