📄 managedgenericirpsystem.idl
字号:
//File: ManagedGenericIRPSystem.idl
#ifndef _MANAGED_GENERIC_IRP_SYSTEM_IDL_
#define _MANAGED_GENERIC_IRP_SYSTEM_IDL_
// This statement must appear after all include statements
#pragma prefix "3gppsa5.org"
/* ## Module: ManagedGenericIRPSystem
This module contains definitions commonly used among all IRPs such as Alarm IRP.
================================================================
*/
module ManagedGenericIRPSystem
{
/*
Exception thrown when an unsupported optional parameter
is passed with information.
The parameter shall be the actual unsupported parameter name.
*/
exception ParameterNotSupported { string parameter; };
/*
Exception thrown when an invalid parameter value is passed.
The parameter shall be the actual parameter name.
*/
exception InvalidParameter { string parameter; };
/*
Exception thrown when a valid but unsupported parameter value is passed.
The parameter shall be the actual parameter name.
*/
exception ValueNotSupported { string parameter; };
/*
Exception thrown when an unsupported optional method is called.
*/
exception OperationNotSupported {};
};
#endif // _MANAGED_GENERIC_IRP_SYSTEM_IDL_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -