mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 03:48:17 +00:00
31 lines
437 B
C
31 lines
437 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Kernel Streaming
|
|
* FILE: drivers/wdm/audio/legacy/stream/dll.c
|
|
* PURPOSE: kernel mode driver initialization
|
|
* PROGRAMMER: Johannes Anderwald
|
|
*/
|
|
|
|
|
|
#include "stream.h"
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
ULONG
|
|
NTAPI
|
|
DllInitialize(ULONG Unknown)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
ULONG
|
|
NTAPI
|
|
DllUnload(VOID)
|
|
{
|
|
return 0;
|
|
}
|