1 /*
2  * COPYRIGHT:       See COPYING in the top level directory
3  * PROJECT:         ReactOS Kernel Streaming
4  * FILE:            drivers/wdm/audio/backpln/portcls/dll.cpp
5  * PURPOSE:         portcls generic dispatcher
6  * PROGRAMMER:      Andrew Greenwood
7  */
8 
9 #include "private.hpp"
10 
11 #ifndef YDEBUG
12 #define NDEBUG
13 #endif
14 
15 #include <debug.h>
16 
17 extern
18 "C"
19 ULONG
20 NTAPI
21 DllInitialize(ULONG Unknown)
22 {
23     return 0;
24 }
25 
26 
27 extern
28 "C"
29 {
30 ULONG
31 NTAPI
32 DllUnload()
33 {
34     return 0;
35 }
36 }
37