mirror of
https://github.com/reactos/reactos.git
synced 2025-05-23 19:14:48 +00:00
Removed unneeded DriverObject parameter to IPStartup.
svn path=/trunk/; revision=11183
This commit is contained in:
parent
49871ae71b
commit
706ff78e48
2 changed files with 3 additions and 6 deletions
|
@ -252,12 +252,9 @@ VOID IPRegisterProtocol(
|
||||||
UINT ProtocolNumber,
|
UINT ProtocolNumber,
|
||||||
IP_PROTOCOL_HANDLER Handler);
|
IP_PROTOCOL_HANDLER Handler);
|
||||||
|
|
||||||
NTSTATUS IPStartup(
|
NTSTATUS IPStartup(PUNICODE_STRING RegistryPath);
|
||||||
PDRIVER_OBJECT DriverObject,
|
|
||||||
PUNICODE_STRING RegistryPath);
|
|
||||||
|
|
||||||
NTSTATUS IPShutdown(
|
NTSTATUS IPShutdown(VOID);
|
||||||
VOID);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -821,7 +821,7 @@ DriverEntry(
|
||||||
LANStartup();
|
LANStartup();
|
||||||
|
|
||||||
/* Initialize network level protocol subsystem */
|
/* Initialize network level protocol subsystem */
|
||||||
IPStartup(DriverObject, RegistryPath);
|
IPStartup(RegistryPath);
|
||||||
|
|
||||||
/* Initialize transport level protocol subsystems */
|
/* Initialize transport level protocol subsystems */
|
||||||
DGStartup();
|
DGStartup();
|
||||||
|
|
Loading…
Reference in a new issue