AVSet.dpr 529 B

1234567891011121314151617181920212223242526272829303132
  1. program AVSet;
  2. uses
  3. Forms,
  4. Windows,
  5. AVSetFrm in 'AVSetFrm.pas' {AVSetForm};
  6. {$R *.res}
  7. var
  8. handle: THandle;
  9. begin
  10. handle := openmutex(mutex_all_access, false, 'RealICQAVSet');
  11. if handle = 0 then
  12. begin
  13. handle := createmutex(nil,false,'RealICQAVSet');
  14. if handle = 0 then
  15. begin
  16. //´´½¨Ê§°Ü
  17. end;
  18. end
  19. else
  20. begin
  21. //¸Ã³ÌÐòÒÑÔËÐÐ
  22. Exit;
  23. end;
  24. Application.Initialize;
  25. Application.Title := 'ÒôƵÊÓÆµµ÷½ÚÏòµ¼';
  26. Application.CreateForm(TAVSetForm, AVSetForm);
  27. Application.Run;
  28. end.