📄 anyxmlerrors.h
字号:
/*
* ============================================================================
* Name: AnyXmlErrors.h
* Part of: AnyWare/AnyXml
* Created: 23/01/2004 by EMCC Software Ltd
* Description: Defines error codes for the AnyXml component of AnyWare
* Version: 1
* Copyright: EMCC Software Ltd
* ============================================================================
*/
#ifndef __ANYXMLERRORS_H__
#define __ANYXMLERRORS_H__
const TInt KAnyXmlErrorBase = -890000; // hopefully avoid conflict with
// other error code ranges!
const TInt KAnyXmlParseError = -890000; // generic parsing error
// Add new errors above the following line. Don't forget to adjust "next available" below.
// Applications using AnyXml may also want changing to recognise the new error codes.
const TInt KAnyXmlErrorNextAvailable = -890001;
const TInt KAnyXmlNumberOfErrorsDefined = KAnyXmlErrorBase - KAnyXmlErrorNextAvailable;
#endif // #ifndef __ANYXMLERRORS_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -