Add .keep guard files in order to restore lost but empty directories we had with...
[reactos.git] / drivers / multimedia / portcls.NEW / dll.c
1 /*
2 ReactOS Kernel Streaming
3 Port Class / Library Init and Cleanup
4
5 Author: Andrew Greenwood
6
7 Notes:
8 -
9 */
10
11 #include <ntddk.h>
12
13 /*
14 * @implemented
15 */
16 ULONG STDCALL
17 DllInitialize(ULONG Unknown)
18 {
19 return 0;
20 }
21
22 /*
23 * @implemented
24 */
25 ULONG STDCALL
26 DllUnload(VOID)
27 {
28 return 0;
29 }