📄 jmdll.dpr
字号:
library JMDll;
uses
SysUtils, Classes, Forms;
{$R *.res}
procedure pTestPassword(AHandle : THandle;Password : String); stdcall;
begin
Application.Handle := AHandle;
if Password <> '123' then
begin
Application.MessageBox('你的密码不正确,我要退出程序了 !','信息');
Application.Terminate;
end else
begin
Application.MessageBox('你的密码正确了,你是用破解的 ?','信息');
end;
end;
exports
pTestPassword;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -