mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
c6c6c62cb5
Addendum to b77ebc4
(r54584).
Follow-up of #5818.
32 lines
445 B
C++
32 lines
445 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"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
extern
|
|
"C"
|
|
ULONG
|
|
NTAPI
|
|
DllInitialize(ULONG Unknown)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
extern
|
|
"C"
|
|
{
|
|
ULONG
|
|
NTAPI
|
|
DllUnload()
|
|
{
|
|
return 0;
|
|
}
|
|
}
|