mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
29 lines
401 B
C++
29 lines
401 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"
|
|
|
|
ULONG
|
|
NTAPI
|
|
DllInitialize(ULONG Unknown)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
extern
|
|
"C"
|
|
{
|
|
ULONG
|
|
NTAPI
|
|
DllUnload()
|
|
{
|
|
return 0;
|
|
}
|
|
}
|