文档彩票走势图>>VMPsoft中文文档>>功能
功能
VMProtect 是新一代软件盗版保护解决方案。VMProtect 是目前强大的反盗版解决方案之一,许多领先的软件发行商都在使用它。VMProtect允许保护可执行文件(EXE,SCR),动态链接库(DLL,OCX,BPL)和驱动程序(SYS)。
加密解密技术交流群(766135708)
一个用于处理函数列表的类:
class MapFunctions { public: MapFunction item(int index); // returns a function with the given index int count(); // returns the number of functions in the list MapFunction itemByAddress(uint64 address); // returns a function at the given address MapFunction itemByName(string name); // returns a function with the given name };
功能类型:
enum ObjectType { Unknown, Code, Data, Export, Marker, APIMarker, Import, String };
一个与函数配合的类:
class MapFunction { public: uint64 address(); // returns the address of the function string name(); // returns the name of the function ObjectType type(); // returns the type of the function References references(); // returns the list of references };
一个处理参考文献列表的类:
class References { public: Reference item(int index); // returns a reference with the given index int count(); // returns the number of references in the list };
一个与参考文献一起工作的类:
class Reference { public: uint64 address(); // returns the address of the command uint64 operandAddress(); // returns the address of the references };