⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 forarrays.via

📁 用VB6写的真正的32位高级语言可视程序编译器
💻 VIA
字号:
// ForArrays.lnl

application PE GUI entry main;

include "Windows.inc";

const HEAP_NO_SERIALIZE	 = 1;
const HEAP_GENERATE_EXCEPTIONS = 4;
const HEAP_ZERO_MEMORY = 8;

frame main();
	dword yo;
	local dword dwHeapHandle;
	local dword dwHeapAlloc;
	dwHeapHandle = HeapCreate(0,0,0);
	dwHeapAlloc = HeapAlloc(dwHeapHandle,HEAP_ZERO_MEMORY,2000);
	yo = $20;
	MoveMemory(dwHeapAlloc,@yo,4);
	yo = 0;
	MoveMemory(@yo,dwHeapAlloc,4);
	MessageBox(0,"test","test",yo);
// yo, free me 
end;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -