mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
69 lines
1.2 KiB
C
69 lines
1.2 KiB
C
/*
|
|
* 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 */
|