epoc32/include/xml/dom/xmlengerrors.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
williamr@2
     1
/*
williamr@4
     2
* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
williamr@2
     3
* All rights reserved.
williamr@2
     4
* This component and the accompanying materials are made available
williamr@4
     5
* under the terms of "Eclipse Public License v1.0"
williamr@2
     6
* which accompanies this distribution, and is available
williamr@4
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
williamr@2
     8
*
williamr@2
     9
* Initial Contributors:
williamr@2
    10
* Nokia Corporation - initial contribution.
williamr@2
    11
*
williamr@2
    12
* Contributors:
williamr@2
    13
*
williamr@4
    14
* Description:
williamr@2
    15
*
williamr@2
    16
*/
williamr@2
    17
williamr@4
    18
/** @file
williamr@4
    19
@publishedAll
williamr@4
    20
@released
williamr@4
    21
*/
williamr@2
    22
williamr@4
    23
#ifndef XMLENGDOMERRORS_H
williamr@4
    24
#define XMLENGDOMERRORS_H
williamr@2
    25
williamr@2
    26
#include <e32def.h> 
williamr@2
    27
williamr@4
    28
/**	
williamr@4
    29
DOM parsing error.
williamr@4
    30
williamr@4
    31
All errors returned by the DOM parser (positive values) are propagated from the
williamr@4
    32
open-source library.  They can be found in the documentation for Libxml2
williamr@4
    33
(version 2.6.10). See http://xmlsoft.org.  
williamr@4
    34
williamr@4
    35
@see xmlParserErrors
williamr@4
    36
@see libxml2_xmlerror.h
williamr@4
    37
williamr@4
    38
These errors are generated by DOM APIs and may occur as a Leave or as a return
williamr@4
    39
code.
williamr@4
    40
*/
williamr@2
    41
const TInt KXmlEngErrParsing = -32397;
williamr@4
    42
williamr@4
    43
/**	DOM save error */
williamr@2
    44
const TInt KXmlEngErrNegativeOutputSize = -32383;
williamr@4
    45
williamr@4
    46
/**	Encoding not understood*/
williamr@2
    47
const TInt KXmlEngErrWrongEncoding = -32382;
williamr@2
    48
williamr@2
    49
/** KXmlEngErrNullNode error */
williamr@2
    50
const TInt KXmlEngErrNullNode = -32380;
williamr@4
    51
williamr@2
    52
/** KXmlEngErrWrongUseOfAPI error */
williamr@2
    53
const TInt KXmlEngErrWrongUseOfAPI = -32381;
williamr@2
    54
williamr@4
    55
#endif // XMLENGDOMERRORS_H
williamr@2
    56