capstone/bindings/vb6
RainRat 972bd066bb
fix typos (#2346)
* fix typos

* fix typos

* fix typos
2024-05-12 21:17:20 +08:00
..
Apache_2.0_License.txt vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
CDisassembler.cls vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
CInstDetails.cls vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
CInstruction.cls vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
CX86Inst.cls fix typos (#2346) 2024-05-12 21:17:20 +08:00
CX86Operand.cls vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
CX86OpMem.cls vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
Form1.frm vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
Form1.frx +vb6 bindings (#889) 2017-04-14 23:23:08 +08:00
mMisc.bas fix typos (#2344) 2024-04-30 10:37:53 +08:00
Module1.bas vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
mx86.bas fix typos (#2344) 2024-04-30 10:37:53 +08:00
Project1.vbp vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
Project1.vbw vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
README.txt vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
screenshot.png +vb6 bindings (#889) 2017-04-14 23:23:08 +08:00
vbCapstone.cpp vb6 bindings: clarify license as Apache v2.0 (#1850) 2022-03-03 17:39:13 +08:00
vbCapstone.sln +vb6 bindings (#889) 2017-04-14 23:23:08 +08:00
vbCapstone.vcproj +vb6 bindings (#889) 2017-04-14 23:23:08 +08:00

Capstone Disassembly Engine bindings for VB6
Contributed by FireEye FLARE Team
Author:  David Zimmer <david.zimmer@fireeye.com>, <dzzie@yahoo.com>
License: Apache 2.0
Copyright: FireEye 2017

This is a sample for using the capstone disassembly engine with VB6.

All of the capstone API are implemented, so this lib supports basic 
disassembly of all of the processor architectures that capstone implements.

In the vb code, full instruction details are currently only supported for
the x86 processor family.

This sample was built against Capstone 3.0 rc4. Note that if the capstone
structures change in the future this code will have to be adjusted to match.

The vbCapstone.dll is written in C. Project files are provided for VS2008.
It is a small shim to give VB6 access to a stdcall API to access capstone.
You could also modify capstone itself so its exports were stdcall.

The C project has an additional include directory set to ./../../include/
for <capstone.h>. This is for the /capstone/bindings/vb6/ directory structure