* Fixes in vapis

This commit is contained in:
pancake 2011-02-18 01:16:56 +01:00
parent 3f883a7c54
commit 284c343b24
4 changed files with 5 additions and 7 deletions

4
TODO
View File

@ -37,6 +37,7 @@ pancake
earada
------
* Implement /A : search AES + RSA (see sync.in/r2)
* Add print support for bitfields (pm b...)
- r_bin_demangle (); // r_util maybe?
* _ZN7WebCore11CounterNode7recountERKNS_12AtomicStringE
@ -48,12 +49,9 @@ earada
RKNS_ = start of arguments
* Fix avr/ppc code analysis // fix or use or what? :)
* Implement print Zoom mode (copypasta from r1) (useful for forensics) <-- MUST
* mount /mnt/ must chop last '/'
* test fatfs and others
* Add SSL support to r_socket
* remove all uses of alloca() // mingw and grep reports them all :)
* typedef all function pointers, like in r_bp
* Implement /A : search AES
* Implement case-insensitive search (e search.casematters ?) any better name? Use /i?
* Implement /. to search using a file .. isnt zignatures about this?
* Implement /p to search for patterns

View File

@ -1,4 +1,4 @@
/* radare - LGPL - Copyright 2008-2010 pancake<nopcode.org> */
/* radare - LGPL - Copyright 2008-2011 pancake<nopcode.org> */
#include <r_flags.h>
@ -12,7 +12,7 @@ R_API int r_flag_space_get(struct r_flag_t *f, const char *name) {
return -1;
}
R_API const char *r_flag_space_get_i (struct r_flag_t *f, int idx) {
R_API const char *r_flag_space_get_i (RFlag *f, int idx) {
if (idx==-1 || idx>255 || f->spaces[idx]=='\0')
return "";
return f->spaces[idx];

View File

@ -129,7 +129,7 @@ public class RCore {
public int seek_delta(int64 addr);
public bool bin_load(string file);
public bool bin_load(string? file);
public RCore.File file;
}

View File

@ -20,7 +20,7 @@ namespace Radare {
public class RFSFile {
public string name;
public string path;
public uint64 path;
public uint64 off;
public uint32 size;
public uint64 time;
public void *ptr;