/* Constants Used in our InfoFrame */ Constant kDeviceProtocolClassName := "TLucentWaveLAN"; Constant kDeviceClass := 'ethernet; /* This is the InfoFrame used when Registering WaveLAN driver */ DefConst('kLucentInfoFrame, { _proto: UR(kUnitSymbol, 'DriverProto), // UR is The same as UnitReference appSymbol: kAppSymbol, DeviceType: kDeviceType, DeviceDisplayName: kStrListCISDisplayName, DeviceCISProductName: kStrListCISProductName, DeviceClass: kDeviceClass, // Not necessary since 'ethernet is set in Proto DeviceProtocolClassName: kDeviceProtocolClassName, ConfigBeforeUse: True, // Since our card required no setup AppleTalkAvailable: True, // Not necessary since True is set in Proto Config: kConfigFunc, ConfigChanged: kConfigChangedFunc, ConfigView: GetLayout("viewDefConfig"), EventDefs: kWaveLANEvents, //--------------------------- // implementation specified //--------------------------- NotifyView: GetLayout( "viewDefNotify" ), });