mirror of
https://github.com/reactos/reactos.git
synced 2025-01-11 16:51:06 +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;
|
||
|
}
|