IToiDvbTScanner.idl
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef ITOIDVBTSCANNER_IDL
00016 #define ITOIDVBTSCANNER_IDL
00017
00018 #include "TToiInvalidArgumentException.idl"
00019 #include "TToiInvalidPreconditionException.idl"
00020 #include "TToiNotEnoughResourcesException.idl"
00021 #include "TToiUnhandledValueException.idl"
00022 #include "IToiApplicationService.idl"
00023 #include "IToiOperationManager.idl"
00024 #include "TToiOperationNotSupportedException.idl"
00025 #include "TToiNoDataException.idl"
00026 #include "TToiSessionViolationException.idl"
00027 #include "IToiMediaSession.idl"
00028 #include "IToiFrontendService.idl"
00029 #include "IToiScanner.idl"
00030
00038 interface IToiDvbTScanner : IToiScanner {
00039
00042 enum TToiDvbTBandwidth
00043 {
00044
00047
00048 BANDWIDTH_ANY,
00049
00052
00053 BANDWIDTH_8MHZ,
00054
00057
00058 BANDWIDTH_7MHZ,
00059
00062
00063 BANDWIDTH_6MHZ,
00064
00067
00068 BANDWIDTH_5MHZ
00069 };
00072 struct TToiDvbTFrontendParameters {
00074 IToiDvbTScanner::TToiDvbTBandwidth Bandwidth;
00077 boolean UseHighPriority;
00078 };
00079
00101 void AddFrequencyScanParameters(in TToiDvbTFrontendParameters tunerParams,
00102 in long startFrequency,
00103 in long endFrequency,
00104 in long step)
00105 raises (TToiInvalidPreconditionException, TToiInvalidArgumentException);
00106
00107 };
00108
00109 #endif