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 #define NDEBUG
12 #include <debug.h>
13 
14 extern
15 "C"
16 ULONG
17 NTAPI
18 DllInitialize(ULONG Unknown)
19 {
20     return 0;
21 }
22 
23 extern
24 "C"
25 {
26 ULONG
27 NTAPI
28 DllUnload()
29 {
30     return 0;
31 }
32 }
33