05-18-2010, 01:04 PM
In some stru,looks like have some problems:
type EXPORT_222 byte'code[8] byte'name[10] int'total int'...
I can get "code" and "name" with right numbers,but "total" was wrong,seems should swap the first byte to second one,I don't know the cause,so I have to do this:
type EXPORT_222 byte'code[8] byte'name[10] byte'total[4] byte'...
and add a function:
function byte*p
int* pi=p;_i=*pi
ret _i
Any helps?thanks!
type EXPORT_222 byte'code[8] byte'name[10] int'total int'...
I can get "code" and "name" with right numbers,but "total" was wrong,seems should swap the first byte to second one,I don't know the cause,so I have to do this:
type EXPORT_222 byte'code[8] byte'name[10] byte'total[4] byte'...
and add a function:
function byte*p
int* pi=p;_i=*pi
ret _i
Any helps?thanks!