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

📄 system.pas

📁 crackme 源码系列
💻 PAS
字号:
unit System;

interface

procedure _HandleFinally;

type
	TGUID = record
		D1: LongWord;
		D2: Word;
		D3: Word;
		D4: array [0..7] of Byte;
	end;

	PInitContext = ^TInitContext;
	TInitContext = record
		OuterContext:   PInitContext;
		ExcFrame:       Pointer;
		InitTable:      pointer;
		InitCount:      Integer;
		Module:         pointer;
		DLLSaveEBP:     Pointer;
		DLLSaveEBX:     Pointer;
		DLLSaveESI:     Pointer;
		DLLSaveEDI:     Pointer;
		ExitProcessTLS: procedure;
		DLLInitState:   Byte;
	end;

implementation

procedure _HandleFinally;
asm
end;

end.

⌨️ 快捷键说明

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