repo.or.cz
/
AROS-Contrib.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
64-bit fixes.
[AROS-Contrib.git]
/
scout
/
disassembler
/
object_intern.h
blob
a1ede3d5ae6ae1d36757f3cb763e2fa2371025f2
1
#define BUFFER_SIZE 64
2
3
struct
StringBuffer
4
{
5
int
pos
;
6
char
buf
[
BUFFER_SIZE
];
7
};
8
9
struct
DisassemblerObject
10
{
11
disassembler_ftype disasm
;
12
disassemble_info dinfo
;
13
struct
StringBuffer sbuf
;
14
struct
LibcData libc_data
;
15
};