mirror of
https://github.com/fail0verflow/hbc.git
synced 2026-03-21 17:34:23 -05:00
we'll deal with python2 to python3 port later
This commit is contained in:
parent
a8e5f6c0f7
commit
db85bd1fa7
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -6,4 +6,4 @@
|
|||
*.dSYM
|
||||
*.pyc
|
||||
.DS_Store
|
||||
|
||||
*.bak
|
||||
|
|
@ -36,14 +36,14 @@ static char *_get_cdata(mxml_node_t *node) {
|
|||
if (!node)
|
||||
return NULL;
|
||||
|
||||
mxml_node_t *n = node->child;
|
||||
// mxml_node_t *n = node->child;
|
||||
|
||||
while (n) {
|
||||
if (n->type == MXML_OPAQUE)
|
||||
return n->value.opaque;
|
||||
// while (n) {
|
||||
// if (n->type == MXML_OPAQUE)
|
||||
// return n->value.opaque;
|
||||
|
||||
n = mxmlWalkNext(n, node, MXML_NO_DESCEND);
|
||||
}
|
||||
// n = mxmlWalkNext(n, node, MXML_NO_DESCEND);
|
||||
// }
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -299,8 +299,8 @@ u32 LCQueueWait(u32);
|
|||
void LCFlushQueue();
|
||||
void LCAlloc(void *,u32);
|
||||
void LCAllocNoInvalidate(void *,u32);
|
||||
void LCAllocOneTag(BOOL,void *);
|
||||
void LCAllocTags(BOOL,void *,u32);
|
||||
void LCAllocOneTag(bool,void *);
|
||||
void LCAllocTags(bool,void *,u32);
|
||||
|
||||
#define LCGetBase() ((void*)LC_BASE)
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user