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

tinfo.c
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:        tcpip/tinfo.c
00005  * PURPOSE:     Transport layer information
00006  * PROGRAMMERS: Art Yerkes
00007  * REVISIONS:
00008  *   CSH 01/08-2000 Created
00009  */
00010 
00011 #include "precomp.h"
00012 
00013 TDI_STATUS InfoTransportLayerTdiQueryEx( UINT InfoClass,
00014                      UINT InfoType,
00015                      UINT InfoId,
00016                      PVOID Context,
00017                      TDIEntityID *id,
00018                      PNDIS_BUFFER Buffer,
00019                      PUINT BufferSize ) {
00020     if( InfoClass == INFO_CLASS_GENERIC &&
00021     InfoType == INFO_TYPE_PROVIDER &&
00022     InfoId == ENTITY_TYPE_ID ) {
00023     ULONG Temp = CL_TL_UDP;
00024     return InfoCopyOut( (PCHAR)&Temp, sizeof(Temp), Buffer, BufferSize );
00025     }
00026 
00027     return TDI_INVALID_REQUEST;
00028 }
00029 
00030 TDI_STATUS InfoTransportLayerTdiSetEx( UINT InfoClass,
00031                        UINT InfoType,
00032                        UINT InfoId,
00033                        PVOID Context,
00034                        TDIEntityID *id,
00035                        PCHAR Buffer,
00036                        UINT BufferSize ) {
00037     return TDI_INVALID_REQUEST;
00038 }

Generated on Sat May 26 2012 04:26:41 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.