Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygentinfo.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
1.7.6.1
|