tools.disassembler.udis: fix types for Windows

db4
Slava Pestov 2009-05-05 15:56:53 -05:00
parent 8d5d1b8bb5
commit e4289f5ae4
1 changed files with 35 additions and 35 deletions

View File

@ -18,54 +18,54 @@ LIBRARY: libudis86
C-STRUCT: ud_operand C-STRUCT: ud_operand
{ "int" "type" } { "int" "type" }
{ "uint8_t" "size" } { "uchar" "size" }
{ "uint64_t" "lval" } { "ulonglong" "lval" }
{ "int" "base" } { "int" "base" }
{ "int" "index" } { "int" "index" }
{ "uint8_t" "offset" } { "uchar" "offset" }
{ "uint8_t" "scale" } ; { "uchar" "scale" } ;
C-STRUCT: ud C-STRUCT: ud
{ "void*" "inp_hook" } { "void*" "inp_hook" }
{ "uint8_t" "inp_curr" } { "uchar" "inp_curr" }
{ "uint8_t" "inp_fill" } { "uchar" "inp_fill" }
{ "FILE*" "inp_file" } { "FILE*" "inp_file" }
{ "uint8_t" "inp_ctr" } { "uchar" "inp_ctr" }
{ "uint8_t*" "inp_buff" } { "uchar*" "inp_buff" }
{ "uint8_t*" "inp_buff_end" } { "uchar*" "inp_buff_end" }
{ "uint8_t" "inp_end" } { "uchar" "inp_end" }
{ "void*" "translator" } { "void*" "translator" }
{ "uint64_t" "insn_offset" } { "ulonglong" "insn_offset" }
{ "char[32]" "insn_hexcode" } { "char[32]" "insn_hexcode" }
{ "char[64]" "insn_buffer" } { "char[64]" "insn_buffer" }
{ "uint" "insn_fill" } { "uint" "insn_fill" }
{ "uint8_t" "dis_mode" } { "uchar" "dis_mode" }
{ "uint64_t" "pc" } { "ulonglong" "pc" }
{ "uint8_t" "vendor" } { "uchar" "vendor" }
{ "struct map_entry*" "mapen" } { "struct map_entry*" "mapen" }
{ "int" "mnemonic" } { "int" "mnemonic" }
{ "ud_operand[3]" "operand" } { "ud_operand[3]" "operand" }
{ "uint8_t" "error" } { "uchar" "error" }
{ "uint8_t" " " "pfx_rex" } { "uchar" "pfx_rex" }
{ "uint8_t" "pfx_seg" } { "uchar" "pfx_seg" }
{ "uint8_t" "pfx_opr" } { "uchar" "pfx_opr" }
{ "uint8_t" "pfx_adr" } { "uchar" "pfx_adr" }
{ "uint8_t" "pfx_lock" } { "uchar" "pfx_lock" }
{ "uint8_t" "pfx_rep" } { "uchar" "pfx_rep" }
{ "uint8_t" "pfx_repe" } { "uchar" "pfx_repe" }
{ "uint8_t" "pfx_repne" } { "uchar" "pfx_repne" }
{ "uint8_t" "pfx_insn" } { "uchar" "pfx_insn" }
{ "uint8_t" "default64" } { "uchar" "default64" }
{ "uint8_t" "opr_mode" } { "uchar" "opr_mode" }
{ "uint8_t" "adr_mode" } { "uchar" "adr_mode" }
{ "uint8_t" "br_far" } { "uchar" "br_far" }
{ "uint8_t" "br_near" } { "uchar" "br_near" }
{ "uint8_t" "implicit_addr" } { "uchar" "implicit_addr" }
{ "uint8_t" "c1" } { "uchar" "c1" }
{ "uint8_t" "c2" } { "uchar" "c2" }
{ "uint8_t" "c3" } { "uchar" "c3" }
{ "uint8_t[256]" "inp_cache" } { "uchar[256]" "inp_cache" }
{ "uint8_t[64]" "inp_sess" } { "uchar[64]" "inp_sess" }
{ "ud_itab_entry*" "itab_entry" } ; { "ud_itab_entry*" "itab_entry" } ;
FUNCTION: void ud_translate_intel ( ud* u ) ; FUNCTION: void ud_translate_intel ( ud* u ) ;