mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:33:07 +00:00
Create a branch for network fixes.
svn path=/branches/aicom-network-fixes/; revision=34994
This commit is contained in:
parent
0e213bbc00
commit
c501d8112c
18148 changed files with 0 additions and 860488 deletions
69
drivers/network/tcpip/include/dispatch.h
Normal file
69
drivers/network/tcpip/include/dispatch.h
Normal file
|
@ -0,0 +1,69 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS TCP/IP protocol driver
|
||||
* FILE: include/dispatch.h
|
||||
* PURPOSE: Dispatch routine prototypes
|
||||
*/
|
||||
#ifndef __DISPATCH_H
|
||||
#define __DISPATCH_H
|
||||
|
||||
|
||||
NTSTATUS DispTdiAccept(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiAssociateAddress(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiConnect(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiDisassociateAddress(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiDisconnect(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiListen(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiQueryInformation(
|
||||
PDEVICE_OBJECT DeviceObject,
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiReceive(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiReceiveDatagram(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiSend(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiSendDatagram(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiSetEventHandler(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiSetInformation(
|
||||
PIRP Irp);
|
||||
|
||||
NTSTATUS DispTdiQueryInformationEx(
|
||||
PIRP Irp,
|
||||
PIO_STACK_LOCATION IrpSp);
|
||||
|
||||
NTSTATUS DispTdiSetInformationEx(
|
||||
PIRP Irp,
|
||||
PIO_STACK_LOCATION IrpSp);
|
||||
|
||||
NTSTATUS DispTdiSetIPAddress(
|
||||
PIRP Irp,
|
||||
PIO_STACK_LOCATION IrpSp);
|
||||
|
||||
NTSTATUS DispTdiDeleteIPAddress(
|
||||
PIRP Irp,
|
||||
PIO_STACK_LOCATION IrpSp);
|
||||
|
||||
#endif /* __DISPATCH_H */
|
||||
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue