ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

dispatch.h
Go to the documentation of this file.
00001 /*
00002  * COPYRIGHT:   See COPYING in the top level directory
00003  * PROJECT:     ReactOS TCP/IP protocol driver
00004  * FILE:        include/dispatch.h
00005  * PURPOSE:     Dispatch routine prototypes
00006  */
00007 
00008 #pragma once
00009 
00010 typedef struct _DISCONNECT_TYPE {
00011     UINT Type;
00012     PVOID Context;
00013     PIRP Irp;
00014 } DISCONNECT_TYPE, *PDISCONNECT_TYPE;
00015 
00016 NTSTATUS DispTdiAccept(
00017     PIRP Irp);
00018 
00019 NTSTATUS DispTdiAssociateAddress(
00020     PIRP Irp);
00021 
00022 NTSTATUS DispTdiConnect(
00023     PIRP Irp);
00024 
00025 NTSTATUS DispTdiDisassociateAddress(
00026     PIRP Irp);
00027 
00028 NTSTATUS DispTdiDisconnect(
00029     PIRP Irp);
00030 
00031 NTSTATUS DispTdiListen(
00032     PIRP Irp);
00033 
00034 NTSTATUS DispTdiQueryInformation(
00035     PDEVICE_OBJECT DeviceObject,
00036     PIRP Irp);
00037 
00038 NTSTATUS DispTdiReceive(
00039     PIRP Irp);
00040 
00041 NTSTATUS DispTdiReceiveDatagram(
00042     PIRP Irp);
00043 
00044 NTSTATUS DispTdiSend(
00045     PIRP Irp);
00046 
00047 NTSTATUS DispTdiSendDatagram(
00048     PIRP Irp);
00049 
00050 NTSTATUS DispTdiSetEventHandler(
00051     PIRP Irp);
00052 
00053 NTSTATUS DispTdiSetInformation(
00054     PIRP Irp);
00055 
00056 NTSTATUS DispTdiQueryInformationEx(
00057     PIRP Irp,
00058     PIO_STACK_LOCATION IrpSp);
00059 
00060 NTSTATUS DispTdiSetInformationEx(
00061     PIRP Irp,
00062     PIO_STACK_LOCATION IrpSp);
00063 
00064 NTSTATUS DispTdiSetIPAddress(
00065     PIRP Irp,
00066     PIO_STACK_LOCATION IrpSp);
00067 
00068 NTSTATUS DispTdiDeleteIPAddress(
00069     PIRP Irp,
00070     PIO_STACK_LOCATION IrpSp);
00071 
00072 VOID DispDoDisconnect(
00073     PVOID Data);
00074 
00075 NTSTATUS IRPFinish( PIRP Irp, NTSTATUS Status );
00076 
00077 /* EOF */

Generated on Sun May 27 2012 04:20:01 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.