mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-04-27 11:13:50 +00:00
fix(profile): overhaul 3.3.5a-windows-386 to work with SuperImportSymbolsScript.py
This commit is contained in:
parent
bdb3389efb
commit
2d003672ec
39 changed files with 1476 additions and 1232 deletions
30
profile/3.3.5a-windows-386/include/xml/xml.h
Normal file
30
profile/3.3.5a-windows-386/include/xml/xml.h
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#ifndef XML_XML_H
|
||||
#define XML_XML_H
|
||||
|
||||
DECLARE_STRUCT(XMLNode);
|
||||
DECLARE_STRUCT(XMLAttribute);
|
||||
|
||||
#include "common/rcstring.h"
|
||||
#include "storm/array.h"
|
||||
|
||||
struct XMLAttribute {
|
||||
// Member variables
|
||||
RCString m_name;
|
||||
RCString m_value;
|
||||
};
|
||||
STORM_TS_GROWABLE_ARRAY(XMLAttribute);
|
||||
|
||||
struct XMLNode {
|
||||
// Member variables
|
||||
void* m_userData;
|
||||
XMLNode* m_parent;
|
||||
XMLNode* m_child;
|
||||
RCString m_name;
|
||||
char* m_body;
|
||||
uint32_t m_bodyLen;
|
||||
TSGrowableArray_XMLAttribute m_attributes;
|
||||
uint32_t m_offset;
|
||||
XMLNode* m_next;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue