[Igarden-commit] CommonSource/yaaf/Libraries/yaaf_core/headers XSGMLStringUtils.h, 1.1, 1.2
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 01:59:02
|
Update of /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_core/headers In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4383 Modified Files: XSGMLStringUtils.h Log Message: Win32 changes Index: XSGMLStringUtils.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/yaaf/Libraries/yaaf_core/headers/XSGMLStringUtils.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XSGMLStringUtils.h 1 Oct 2006 19:18:49 -0000 1.1 --- XSGMLStringUtils.h 22 Feb 2007 01:59:01 -0000 1.2 *************** *** 19,41 **** /************************************************************************/ ! extern uint32 CalcSGMLEscapeLen(const char *src, uint32 len); ! extern uint32 CalcSGMLEscapeIn(const char *src, uint32 len, uint32 outmax); ! extern uint32 AddSGMLEscapes(char *dest, uint32 dlen, const char *src, uint32 slen); ! extern uint32 ConvertSGMLEscapes(char *dest, uint32 dlen, const char *src, uint32 slen, bool *errflag = NULL); ! extern uint32 ConvertSGMLEscapes(char *dest, const char *src, uint32 dlen); - inline uint32 ConvertSGMLEscapeChar(char *dest, uint32 dlen, char src) - { - return ConvertSGMLEscapes(dest,dlen,&src,1); - } } // namespace yaaf ! #endif --- 19,39 ---- /************************************************************************/ ! YAAF_API uint32 CalcSGMLEscapeLen(const char *src, uint32 len); ! YAAF_API uint32 CalcSGMLEscapeIn(const char *src, uint32 len, uint32 outmax); ! YAAF_API uint32 AddSGMLEscapes(char *dest, uint32 dlen, const char *src, uint32 slen); ! YAAF_API uint32 ConvertSGMLEscapes(char *dest, uint32 dlen, const char *src, uint32 slen, bool *errflag = NULL); ! YAAF_API uint32 ConvertSGMLEscapes(char *dest, const char *src, uint32 dlen); ! ! YAAF_API uint32 ConvertSGMLEscapeChar(char *dest, uint32 dlen, char src); } // namespace yaaf ! #endif |