reactos/drivers/wdm/audio/backpln/portcls/dll.cpp
Serge Gautherie c6c6c62cb5
[PORTCLS] Remove meaningless YDEBUG (#5858)
Addendum to b77ebc4 (r54584).
Follow-up of #5818.
2023-11-02 13:14:12 +01:00

33 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;
}
}