;****************************************************************************** ; PPP over Ethernet Protocol ; Windows 2000 NDIS Miniport INF ; written by Robert Schlabbach (normanb@cs.TU-Berlin.DE) ; Copyright (C) 2000-2001 by Robert Schlabbach ;****************************************************************************** [Version] Signature = "$Windows NT$" ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318} Provider = %Provider% DriverVer = 05/29/2001,0.96.0666.1 [Manufacturer] %Manufacturer% = DevicesSection [DevicesSection] ; DisplayName Section DeviceID ; ----------- ------- -------- %RASPPPOE.DisplayName% = RASPPPOE.NDI, RS_RASPPPOE [ControlFlags] ExcludeFromSelect = RS_RASPPPOE ;------------------------------------------------------------------------------ ; Network Device Install Section ;------------------------------------------------------------------------------ [RASPPPOE.NDI] Characteristics = 0x09 ; NCF_HIDDEN | NCF_VIRTUAL AddReg = RASPPPOE.AddReg ;------------------------------------------------------------------------------ ; Service Install Section ;------------------------------------------------------------------------------ [RASPPPOE.NDI.Services] AddService = RMSPPPOE, 2, RASPPPOE.AddService, RASPPPOE.AddEventLog [RASPPPOE.AddService] DisplayName = %RASPPPOE.DisplayName% ServiceType = 1 ; SERVICE_KERNEL_DRIVER StartType = 3 ; SERVICE_DEMAND_START ErrorControl = 1 ; SERVICE_ERROR_NORMAL ServiceBinary = %12%\RMSPPPOE.SYS LoadOrderGroup = PNP_TDI [RASPPPOE.AddEventLog] AddReg = RASPPPOE.AddEventLog.AddReg [RASPPPOE.AddEventLog.AddReg] HKR, , EventMessageFile, 0x00020000, "%%SystemRoot%%\System32\RASPPPOE.DLL" HKR, , TypesSupported, 0x00010001, 7 ;------------------------------------------------------------------------------ ; Registry Entries ;------------------------------------------------------------------------------ [RASPPPOE.AddReg] HKR, NDI, Service, 0, "RMSPPPOE" HKR, NDI\Interfaces, UpperRange, 0, "ndiswan" HKR, NDI\Interfaces, LowerRange, 0, "nolower" HKR, , MinWanEndpoints, 0x00010001, 1 HKR, , MaxWanEndpoints, 0x00010001, 10 HKR, , WanEndpoints, 0x00010001, 1 ;------------------------------------------------------------------------------ ; Localizable Strings ;------------------------------------------------------------------------------ [Strings] ; INF Provider Provider = "Robert Schlabbach" ; Manufacturer Manufacturer = "Robert Schlabbach" ; Display Name RASPPPOE.DisplayName = "WAN Miniport (PPP over Ethernet Protocol)"