Вопрос

Where can I find a list of official and unofficial Visual Basic 6 specifications that can allow me to, say, fully interpret the contents of a VB6 EXE file and analyze them, or interpret them on my own, instead of using MSVBVM60.DLL?

Something like the specification of the virtual machine and its language.

Things such as opcodes, instructions, mnemonics, whether it uses one or more stacks, stack pointers, registers, etc.

Это было полезно?

Решение

VB6 can be compiled to p-code or native code.

  • Native code is just native 8086 family machine code. I suppose that's a public standard. It's not very malleable.
  • Here's a link about p-code
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top