|
|
1.1 ! root 1: /*++ ! 2: ! 3: Copyright (c) 1989-1993 Microsoft Corporation ! 4: ! 5: Module Name: ! 6: ! 7: stcnfg.h ! 8: ! 9: Abstract: ! 10: ! 11: Private include file for the NT Sample transport. This ! 12: file defines all constants and structures necessary for support of ! 13: the dynamic configuration of ST. ! 14: ! 15: Revision History: ! 16: ! 17: --*/ ! 18: ! 19: #ifndef _STCONFIG_ ! 20: #define _STCONFIG_ ! 21: ! 22: // ! 23: // configuration structure. ! 24: // ! 25: ! 26: typedef struct { ! 27: ! 28: ULONG InitRequests; ! 29: ULONG InitConnections; ! 30: ULONG InitAddressFiles; ! 31: ULONG InitAddresses; ! 32: ULONG MaxRequests; ! 33: ULONG MaxConnections; ! 34: ULONG MaxAddressFiles; ! 35: ULONG MaxAddresses; ! 36: ULONG InitPackets; ! 37: ULONG InitReceivePackets; ! 38: ULONG InitReceiveBuffers; ! 39: ULONG SendPacketPoolSize; ! 40: ULONG ReceivePacketPoolSize; ! 41: ULONG MaxMemoryUsage; ! 42: ! 43: // ! 44: // Names contains NumAdapters pairs of NDIS adapter names (which ! 45: // nbf binds to) and device names (which nbf exports). The nth ! 46: // adapter name is in location n and the device name is in ! 47: // DevicesOffset+n (DevicesOffset may be different from NumAdapters ! 48: // if the registry Bind and Export strings are different sizes). ! 49: // ! 50: ! 51: ULONG NumAdapters; ! 52: ULONG DevicesOffset; ! 53: NDIS_STRING Names[1]; ! 54: ! 55: } CONFIG_DATA, *PCONFIG_DATA; ! 56: ! 57: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.