anyxmlerrors.h

来自「symbian s60上的GPS」· C头文件 代码 · 共 27 行

H
27
字号
/*
* ============================================================================
*  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 + =
减小字号Ctrl + -
显示快捷键?