功能:做软件加密、授权控制。 支持以下开发语言的加密保护 C C++ VB6.0 Delphi7 DeliphXE-XE10 BCB6.0 C# .Net Java ARX(AutoCAD) Unity3D UE4 所有格式的资源文件 Revit(插件) Virbox 开发者工具盒是一款支持在线下载SDK工具套件、文档、API及示例代码的下载程序,同时集成工具管理和检查更新功能,确保开发者第一时间获取最新产品。首次安装使用时需登录开发者账号更新SDK,第一次需要更新文件较多,请您耐心等待,文件更新完成后方可正常使用。
2021-06-17 22:00:10 1.39MB 加壳工具 软件加密 防反编译 代码保护
1
使用makefile快速编译文件,先将makefile文件放在项目文件目录下(放在最外面),根据makefile里面所定义的各种文件名,创建bin、lib、include、src等文件夹,在include里面放入“xxx.h”文件,在src里面放入分割封装的函数"xxx.c"文件,先执行make clean清除多余文件,再make编译.o文件,然后输入:make bin/project 创建可执行文件,将bin中的project拖出目录,最后将当前文件中lib的.so文件复制到 根目录下 /lib中,就可以./project执行文件,运行代码了·~~
2021-04-21 18:00:22 458B makefile
1
VS编译wxsqlite3 3.5.8工程,支持dll和lib,附带测试代码
2021-03-23 14:46:46 1.76MB wxsqlite3 编译代码
1
APK反编译工具
2021-03-09 19:06:58 16.52MB Android 反编译 代码查看
1
stm32_gd32 gcc编译代码工程
2021-02-28 11:02:50 8.67MB mcu
1
linux环境 nginx-1.18.0 ,目录/root下解压 使用,无需编译代码 #tar -zxvf nginx-green-1.18.0.tar.gz #chmod 777 nginx/* #cd nginx/sbin #./nginx 如果提示无权限,可以手工先创建相关文件和目录
2021-01-28 01:07:20 4.24MB linux nginx 无需编译代码
1
c# 动态编译代码 执行脚本代码 关键字还会变色 // debug it step by step (F10, F11) using System; // for Console.WriteLine using System.Windows.Forms; // for MessageBox.Show, ... using System.Diagnostics; // for Debug.WriteLine using System.Collections.Generic; // for List // we can call static functions MessageBox.Show("Hello World!"); // output to DevStudio Output Console.WriteLine("Hello World!"); // same output over Debug Debug.WriteLine("Hello World!"); // we can define global var's var anystr = "Hello World {0} {1}"; int anynuber = 1; float anyfloat = 3.14f; // and we can use it Console.WriteLine(string.Format(anystr, anynuber, anyfloat)); // we can write functions string test1(int i, string s) { return s + " " + i; } double test2(double x) { double t = Math.Sin(x); // with local vars of course return t * t; }
2019-12-21 20:19:45 70KB c# 动态编译 执行脚本 调式代码
1