mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
29 lines
302 B
C
29 lines
302 B
C
/*
|
|
ReactOS Kernel Streaming
|
|
Port Class / Library Init and Cleanup
|
|
|
|
Author: Andrew Greenwood
|
|
|
|
Notes:
|
|
-
|
|
*/
|
|
|
|
#include <ntddk.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
ULONG STDCALL
|
|
DllInitialize(ULONG Unknown)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
ULONG STDCALL
|
|
DllUnload(VOID)
|
|
{
|
|
return 0;
|
|
}
|