[Easysoap-checkins] CVS: easysoap/include/easysoap XMLComposer.h, 1.2, 1.3 es_msvc.h, 1.9, 1.10
Status: Beta
Brought to you by:
dcrowley
From: David C. <dcr...@us...> - 2006-11-09 07:24:45
|
Update of /cvsroot/easysoap/easysoap/include/easysoap In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14826 Modified Files: XMLComposer.h es_msvc.h Log Message: Modifications so we can compile with VS2005 Index: XMLComposer.h =================================================================== RCS file: /cvsroot/easysoap/easysoap/include/easysoap/XMLComposer.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- XMLComposer.h 20 May 2002 16:56:11 -0000 1.2 +++ XMLComposer.h 9 Nov 2006 07:24:38 -0000 1.3 @@ -64,7 +64,7 @@ XMLComposer(const XMLComposer&); XMLComposer& operator=(const XMLComposer&); - const char *GetSymbol(char *buff, const char *prefix); + const char *GetSymbol(char *buff, size_t buffsize, const char *prefix); void EndStart(); void Resize(); void Write(const char *str); Index: es_msvc.h =================================================================== RCS file: /cvsroot/easysoap/easysoap/include/easysoap/es_msvc.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- es_msvc.h 24 Sep 2005 07:24:24 -0000 1.9 +++ es_msvc.h 9 Nov 2006 07:24:38 -0000 1.10 @@ -49,6 +49,9 @@ #if _MSC_VER >= 1310 #define HAVE_TYPENAME #endif +#if _MSC_VER >= 1400 +#define _CRT_SECURE_NO_DEPRECATE +#endif #define snprintf _snprintf #define vsnprintf _vsnprintf |