📄 xlttagtbl.h
字号:
/*************************************************************************//* module: Definition of en-/decoder tagtable data *//* file: XLTTagtbl.h *//* target system: all *//* target OS: all */ /*************************************************************************//* * Copyright Notice * Copyright (c) Ericsson, IBM, Lotus, Matsushita Communication * Industrial Co., Ltd., Motorola, Nokia, Openwave Systems, Inc., * Palm, Inc., Psion, Starfish Software, Symbian, Ltd. (2001). * All Rights Reserved. * Implementation of all or part of any Specification may require * licenses under third party intellectual property rights, * including without limitation, patent rights (such a third party * may or may not be a Supporter). The Sponsors of the Specification * are not responsible and shall not be held responsible in any * manner for identifying or failing to identify any or all such * third party intellectual property rights. * * THIS DOCUMENT AND THE INFORMATION CONTAINED HEREIN ARE PROVIDED * ON AN "AS IS" BASIS WITHOUT WARRANTY OF ANY KIND AND ERICSSON, IBM, * LOTUS, MATSUSHITA COMMUNICATION INDUSTRIAL CO. LTD, MOTOROLA, * NOKIA, PALM INC., PSION, STARFISH SOFTWARE AND ALL OTHER SYNCML * SPONSORS DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING * BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION * HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT * SHALL ERICSSON, IBM, LOTUS, MATSUSHITA COMMUNICATION INDUSTRIAL CO., * LTD, MOTOROLA, NOKIA, PALM INC., PSION, STARFISH SOFTWARE OR ANY * OTHER SYNCML SPONSOR BE LIABLE TO ANY PARTY FOR ANY LOSS OF * PROFITS, LOSS OF BUSINESS, LOSS OF USE OF DATA, INTERRUPTION OF * BUSINESS, OR FOR DIRECT, INDIRECT, SPECIAL OR EXEMPLARY, INCIDENTAL, * PUNITIVE OR CONSEQUENTIAL DAMAGES OF ANY KIND IN CONNECTION WITH * THIS DOCUMENT OR THE INFORMATION CONTAINED HEREIN, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. * * The above notice and this paragraph must be included on all copies * of this document that are made. * */#ifndef _XLT_TAGTBL_H#define _XLT_TAGTBL_H/*************************************************************************//* Definitions *//*************************************************************************/#include "xlttags.h"#include "xltdec.h"#include "xltdeccom.h"typedef struct Tag_s{ XltTagID_t id; Byte_t wbxml; String_t xml;} Tag_t, *TagPtr_t;/** * FUNCTION: buildXXX * * These functions each decode one single SyncML element starting at the * current position within the SyncML document. Child elements are build * recursively. * The functions check that the pointer to the memory structures are * NULL when called and return an error otherwise. This will only happen * when a SyncML element contains several child elements of the same type * for which this is not allowed according to the SyncML DTD; e.g. a * SyncHdr with two or more MsgID tags. Items and other list types * are handled separately by the appendXXXList functions (see below). * * PRE-Condition: * ppElem is NULL * The scanner's current token is the start tag (may be * empty) of the SyncML element to be decoded. * * POST-Condition: * The scanner's current token is the end tag (or empty * start tag) of the SyncML element to be decoded. *//* implemented in xltdec.c! */Ret_t buildAlert(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);#if (defined ATOMIC_RECEIVE || defined SEQUENCE_RECEIVE)Ret_t buildAtomOrSeq(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);#endifRet_t buildChal(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildCred(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildDelete(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildExec(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildGenericCmd(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildItem(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildMap(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildMapItem(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildPCData(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildPCDataList(XltDecoderPtr_t pDecoder, VoidPtr_t *ppPCData);Ret_t buildPutOrGet(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildResults(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);#ifdef SEARCH_RECEIVERet_t buildSearch(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);#endifRet_t buildStatus(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildSync(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildSyncHdr(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);Ret_t buildTargetOrSource(XltDecoderPtr_t pDecoder, VoidPtr_t *ppElem);#ifdef NOWSMconst // without WSM, the tag table is a global read-only constant#endifTagPtr_t getTagTable(SmlPcdataExtension_t cp);#endif /* _XLT_TAGTBL_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -