20 lines
214 B
C
20 lines
214 B
C
|
#ifndef _DISASM_H_
|
||
|
#define _DISASM_H_
|
||
|
|
||
|
//
|
||
|
// Constant declarations
|
||
|
//
|
||
|
|
||
|
//
|
||
|
// Structure definitions
|
||
|
//
|
||
|
|
||
|
//
|
||
|
// Function definitions
|
||
|
//
|
||
|
extern
|
||
|
DWORD
|
||
|
GetInstructionLengthFromAddress(PVOID paddr);
|
||
|
|
||
|
#endif //_DISASM_H_
|