ICableCardService.idl
00001
00002
00003
00004
00005
00006
00007
00008 #ifndef ICABLECARDSERVICE_IDL
00009 #define ICABLECARDSERVICE_IDL
00010
00011 #include "TToiInvalidArgumentException.idl"
00012
00013
00014
00015
00016 interface ICableCardService
00017 {
00018 void GetDiagnosticsDataItem(in string item, out string value)
00019 raises (TToiInvalidArgumentException);
00020
00021 void GetHostPairingReport(out string cableCardId, out string hostId,
00022 out string pairingStatus, out string reserved, out string nonce,
00023 out string authenticator)
00024 raises (TToiInvalidArgumentException);
00025 };
00026 #endif