1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS Kernel Streaming 4 * FILE: drivers/wdm/audio/legacy/stream/dll.c 5 * PURPOSE: kernel mode driver initialization 6 * PROGRAMMER: Johannes Anderwald 7 */ 8 9 10 #include "stream.h" 11 12 /* 13 * @implemented 14 */ 15 ULONG 16 NTAPI 17 DllInitialize(ULONG Unknown) 18 { 19 return 0; 20 } 21 22 /* 23 * @implemented 24 */ 25 ULONG 26 NTAPI 27 DllUnload(VOID) 28 { 29 return 0; 30 } 31