Skip to content

Commit

Permalink
Silence MSVC warnings and update binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeu committed Apr 30, 2015
1 parent 8976bd4 commit 7935928
Show file tree
Hide file tree
Showing 12 changed files with 659 additions and 659 deletions.
1,046 changes: 523 additions & 523 deletions ExternData/Resources/C-Sources/bsxml.c

Large diffs are not rendered by default.

272 changes: 136 additions & 136 deletions ExternData/Resources/C-Sources/bsxml.h
Original file line number Diff line number Diff line change
@@ -1,136 +1,136 @@
/* simple DOM xml tree
*
* Copyright (C) 2014 Borislav Sapundzhiev
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or (at
* your option) any later version.
*
*/

#ifndef __BSXML_H
#define __BSXML_H

#include "expat.h"
#include "array.h"

#ifdef _WIN32
#define strcasecmp _stricmp
#undef strdup
#define strdup _strdup
#define snprintf _snprintf
#endif

enum { XML_NOK = 0, XML_OK };
enum { NODE_NONE, NODE_ROOT, NODE_CHILD };

typedef char* String;

typedef struct XmlNode * XmlNodeRef;
typedef struct XmlAttribute XmlAttribute;
typedef struct s_array XmlAttributes;
typedef struct s_array XmlStack;
typedef struct s_array XmlNodes;
typedef struct XmlNode XmlNode;
typedef struct XmlParser XmlParser;

struct XmlAttribute {
String key;
String value;
};

struct XmlParser
{
XmlNodeRef m_root;
XML_Parser m_parser;
String m_errorString;
XmlStack *m_nodeStack;
};

XmlNodeRef XmlParser_parse_file(XmlParser *parser, const String fileName );
XmlNodeRef XmlParser_parse(XmlParser *parser, const char * xml );
String XmlParser_getErrorString(struct XmlParser *parser);

struct XmlNode {
//node type
int m_type;
//line of node
int m_line;
//node xml tag
String m_tag;
//! Content of XML node.
String m_content;
//! Parent XML node.
struct XmlNode *m_parent;
//Xml childs
XmlNodes *m_childs;
//! Xml node attributes.
XmlAttributes *m_attributes;
};
/*create root element */
struct XmlNode *XmlNode_Create( const String tag );
struct XmlNode *XmlNode_createChild(struct XmlNode *node, const String tag, const String text);
void XmlNode_deleteTree(struct XmlNode *root);
void XmlNode_delete(struct XmlNode *node);
//! Non virtual destructor, XmlNode cannot be used as a base class.
//! Get XML node tag.
String XmlNode_getTag(struct XmlNode * node);
//! Return true if givven tag equal to node tag.
int XmlNode_isTag( struct XmlNode * node, const String tag );
//! Get XML Node attributes.
XmlAttributes * XmlNode_getAttributes(struct XmlNode * node);
//! Get XML Node attribute for specified key.
String XmlNode_getAttribute(struct XmlNode * node, const String key );
//! Check if attributes with specified key exist.
int XmlNode_haveAttribute(struct XmlNode * node, const String key );
//! Set new XML Node attribute (or override attribute with same key).
void XmlNode_setAttribute(struct XmlNode * node, const String key, const String value );
//! Adds new child node.
void XmlNode_addChild(struct XmlNode * node, const XmlNodeRef child );

//! Get number of child XML nodes.
int XmlNode_getChildCount(struct XmlNode * node);

//! Get XML Node child nodes.
XmlNodeRef XmlNode_getChild(struct XmlNode * node, int i ) ;

//! Find node with specified tag.
XmlNodeRef XmlNode_findChild(struct XmlNode * node, const String tag ) ;

//! Get parent XML node.
XmlNodeRef XmlNode_getParent(struct XmlNode * node);

//! Returns content of this node.
String XmlNode_getContent(struct XmlNode * node);

//! Returns line number for XML tag.
int XmlNode_getLine(struct XmlNode * node);
//! Set line number in xml.
void XmlNode_setLine(struct XmlNode * node, int line );

//! Returns XML of this node and sub nodes.
String XmlNode_getXML(struct XmlNode * node);
void XmlNode_toFile(struct XmlNode *node, const char *fileName);
//! Get value of node.
void XmlNode_getValue(struct XmlNode * node, String *value ) ;
void XmlNode_getValuent(struct XmlNode * node, int *value ) ;
//void getValue( float &value ) const;
//void getValue(struct XmlNode * node, bool &value ) const { int v; getValue(v); value = (v != 0); }

//! Set value of node.
void XmlNode_setValue(struct XmlNode * node, const String value );
void XmlNode_setValueInt(struct XmlNode * node, int value );
//void setValue( float value );

//! Get value of sub node.
int XmlNode_getSubNodeValue(struct XmlNode * node, const String tag, String *value ) ;
int XmlNode_getSubNodeValueInt(struct XmlNode * node, const String tag, int *value ) ;
int XmlNode_getSubNodeValueFloat(struct XmlNode * node, const String tag,float *value ) ;

//! Set value of sub node (Create sub node if neccesarry).
void XmlNode_setSubNodeValue(struct XmlNode * node, const String tag, const String value );
void XmlNode_setSubNodeValueInt(struct XmlNode * node, const String tag, int value );
void XmlNode_setSubNodeValueFloat(struct XmlNode * node, const String tag, float value );

#endif // __BSXML_H
/* simple DOM xml tree
*
* Copyright (C) 2014 Borislav Sapundzhiev
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or (at
* your option) any later version.
*
*/

#ifndef __BSXML_H
#define __BSXML_H

#include "expat.h"
#include "array.h"

#ifdef _WIN32
#define strcasecmp _stricmp
#undef strdup
#define strdup _strdup
#define snprintf _snprintf
#endif

enum { XML_NOK = 0, XML_OK };
enum { NODE_NONE, NODE_ROOT, NODE_CHILD };

#define String char*

typedef struct XmlNode * XmlNodeRef;
typedef struct XmlAttribute XmlAttribute;
typedef struct s_array XmlAttributes;
typedef struct s_array XmlStack;
typedef struct s_array XmlNodes;
typedef struct XmlNode XmlNode;
typedef struct XmlParser XmlParser;

struct XmlAttribute {
String key;
String value;
};

struct XmlParser
{
XmlNodeRef m_root;
XML_Parser m_parser;
String m_errorString;
XmlStack *m_nodeStack;
};

XmlNodeRef XmlParser_parse_file(XmlParser *parser, const String fileName );
XmlNodeRef XmlParser_parse(XmlParser *parser, const char * xml );
String XmlParser_getErrorString(struct XmlParser *parser);

struct XmlNode {
//node type
int m_type;
//line of node
int m_line;
//node xml tag
String m_tag;
//! Content of XML node.
String m_content;
//! Parent XML node.
struct XmlNode *m_parent;
//Xml childs
XmlNodes *m_childs;
//! Xml node attributes.
XmlAttributes *m_attributes;
};
/*create root element */
struct XmlNode *XmlNode_Create( const String tag );
struct XmlNode *XmlNode_createChild(struct XmlNode *node, const String tag, const String text);
void XmlNode_deleteTree(struct XmlNode *root);
void XmlNode_delete(struct XmlNode *node);
//! Non virtual destructor, XmlNode cannot be used as a base class.
//! Get XML node tag.
String XmlNode_getTag(struct XmlNode * node);
//! Return true if givven tag equal to node tag.
int XmlNode_isTag( struct XmlNode * node, const String tag );
//! Get XML Node attributes.
XmlAttributes * XmlNode_getAttributes(struct XmlNode * node);
//! Get XML Node attribute for specified key.
String XmlNode_getAttribute(struct XmlNode * node, const String key );
//! Check if attributes with specified key exist.
int XmlNode_haveAttribute(struct XmlNode * node, const String key );
//! Set new XML Node attribute (or override attribute with same key).
void XmlNode_setAttribute(struct XmlNode * node, const String key, const String value );
//! Adds new child node.
void XmlNode_addChild(struct XmlNode * node, const XmlNodeRef child );

//! Get number of child XML nodes.
int XmlNode_getChildCount(struct XmlNode * node);

//! Get XML Node child nodes.
XmlNodeRef XmlNode_getChild(struct XmlNode * node, int i ) ;

//! Find node with specified tag.
XmlNodeRef XmlNode_findChild(struct XmlNode * node, const String tag ) ;

//! Get parent XML node.
XmlNodeRef XmlNode_getParent(struct XmlNode * node);

//! Returns content of this node.
String XmlNode_getContent(struct XmlNode * node);

//! Returns line number for XML tag.
int XmlNode_getLine(struct XmlNode * node);
//! Set line number in xml.
void XmlNode_setLine(struct XmlNode * node, int line );

//! Returns XML of this node and sub nodes.
String XmlNode_getXML(struct XmlNode * node);
void XmlNode_toFile(struct XmlNode *node, const char *fileName);
//! Get value of node.
void XmlNode_getValue(struct XmlNode * node, String *value ) ;
void XmlNode_getValuent(struct XmlNode * node, int *value ) ;
//void getValue( float &value ) const;
//void getValue(struct XmlNode * node, bool &value ) const { int v; getValue(v); value = (v != 0); }

//! Set value of node.
void XmlNode_setValue(struct XmlNode * node, const String value );
void XmlNode_setValueInt(struct XmlNode * node, int value );
//void setValue( float value );

//! Get value of sub node.
int XmlNode_getSubNodeValue(struct XmlNode * node, const String tag, String *value ) ;
int XmlNode_getSubNodeValueInt(struct XmlNode * node, const String tag, int *value ) ;
int XmlNode_getSubNodeValueFloat(struct XmlNode * node, const String tag,float *value ) ;

//! Set value of sub node (Create sub node if neccesarry).
void XmlNode_setSubNodeValue(struct XmlNode * node, const String tag, const String value );
void XmlNode_setSubNodeValueInt(struct XmlNode * node, const String tag, int value );
void XmlNode_setSubNodeValueFloat(struct XmlNode * node, const String tag, float value );

#endif // __BSXML_H
Binary file modified ExternData/Resources/Library/win32/ED_INIFile.dll
Binary file not shown.
Binary file modified ExternData/Resources/Library/win32/ED_INIFile.lib
Binary file not shown.
Binary file modified ExternData/Resources/Library/win32/ED_XMLFile.dll
Binary file not shown.
Binary file modified ExternData/Resources/Library/win32/ED_XMLFile.lib
Binary file not shown.
Binary file modified ExternData/Resources/Library/win32/expat.lib
Binary file not shown.
Binary file modified ExternData/Resources/Library/win64/ED_INIFile.dll
Binary file not shown.
Binary file modified ExternData/Resources/Library/win64/ED_INIFile.lib
Binary file not shown.
Binary file modified ExternData/Resources/Library/win64/ED_XMLFile.dll
Binary file not shown.
Binary file modified ExternData/Resources/Library/win64/ED_XMLFile.lib
Binary file not shown.
Binary file modified ExternData/Resources/Library/win64/expat.lib
Binary file not shown.

0 comments on commit 7935928

Please sign in to comment.