* Some random fixes for the r_util vapi

This commit is contained in:
pancake 2010-11-03 20:46:53 +01:00
parent 7e54a258e5
commit 4d8a1ef5ad
2 changed files with 10 additions and 4 deletions

10
TODO
View File

@ -5,10 +5,16 @@
<{include libr/TODO}>
TODO 0.6
TODO 0.7
========
* _ZN7WebCore11CounterNode7recountERKNS_12AtomicStringE
- demangle c++ and objc names
WebCore.CounterNode.recount(AtomicString)
_ZN = begin of stream
0-9+ = count of chars
E = end of stream
RKNS_ = start of arguments
* Check if python plugin works from inside
* fix continue when eip = breakpoint
Questions
=========

View File

@ -79,9 +79,9 @@ public static class Radare.RHex {
public static void backtrace();
}
[CCode (cname="RNum", cheader_filename="r_util.h", cprefix="r_num_", free_function="")]
[CCode (cname="RNum", cheader_filename="r_util.h", unref_function="", cprefix="r_num_", free_function="")]
public static class RNum {
public RNum(RNumCallback cb, void *user);
public RNum(RNumCallback? cb=null, void *user=null);
public uint64 get(string str);
public uint64 math(string str);
}