var NtCreateSection: TAPIHooker;begin NtCreateSection:= TAPIHooker.Create; NtCreateSection.DllName:= 'ntdll.dll'; NtCreateSection.Function:= 'NtCreateSection'; NtCreateSection.ParamCount:= 4; NtCreateSection.HookProc:= NtCreateSectionHookProc; NtCreateSection.Hook;end;function NtCreateSectionProc(Params: array of DOWRD): DWORD;begin MessageBox(0, '是否运行程序?', '提示', 0);end;大概就是这个样子,用我的控件的话。