mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:02:58 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
82
drivers/network/tcpip/include/dispatch.h
Normal file
82
drivers/network/tcpip/include/dispatch.h
Normal file
|
@ -0,0 +1,82 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS TCP/IP protocol driver
|
||||
* FILE: include/dispatch.h
|
||||
* PURPOSE: Dispatch routine prototypes
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
typedef struct _DISCONNECT_TYPE {
|
||||
UINT Type;
|
||||
PVOID Context;
|
||||
PIRP Irp;
|
||||
} DISCONNECT_TYPE, *PDISCONNECT_TYPE;
|
||||
|
||||
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);
|
||||
|
||||
NTSTATUS DispTdiQueryIpHwAddress(
|
||||
PDEVICE_OBJECT DeviceObject,
|
||||
PIRP Irp,
|
||||
PIO_STACK_LOCATION IrpSp);
|
||||
|
||||
VOID DispDoDisconnect(
|
||||
PVOID Data);
|
||||
|
||||
NTSTATUS IRPFinish( PIRP Irp, NTSTATUS Status );
|
||||
|
||||
/* EOF */
|
Loading…
Add table
Add a link
Reference in a new issue