blob: b9e31c443005d60acc626814dd3ac4409a3d266b (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef DISASM_H_INCLUDED
#define DISASM_H_INCLUDED
#include "distorm/distorm.h"
_DecodeResult disasm(_OffsetType codeOffset, const unsigned char* code, int codeLen, _DecodeType dt, _DInst instructions[], unsigned int maxInstructions, unsigned int* usedInstructionsCount);
#endif /* DISASM_H_INCLUDED */
|