Changeset 9 for trunk/Start.pas
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 6 6 Win32 7 7 *.~dsk 8 C-evo.exe 9 Integrated.compiled 10 Integrated.lps 11 lib
-
- Property svn:ignore
-
trunk/Start.pas
r6 r9 1 {$INCLUDE switches}1 {$INCLUDE Switches.pas} 2 2 unit Start; 3 3 … … 7 7 GameServer, Messg, ButtonBase, ButtonA, ButtonC, ButtonB, Area, 8 8 9 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, StdCtrls,9 LCLIntf, LCLType, LMessages, Messages, SysUtils, Classes, Graphics, Controls, Forms, StdCtrls, 10 10 Menus, Registry; 11 11 … … 105 105 106 106 uses 107 Directories, Protocol, Direct, ScreenTools, Inp, Back, 108 109 ShellAPI; 110 111 {$R *.DFM} 107 Directories, Protocol, Direct, ScreenTools, Inp, Back; 108 109 {$R *.lfm} 112 110 113 111 const … … 927 925 928 926 if (AutoDiff < 0) and (bixView[0] = bixNoTerm) then 929 FileName := 'Round' + IntToStr(Get CurrentProcessID())927 FileName := 'Round' + IntToStr(GetProcessID()) 930 928 else 931 929 begin … … 1594 1592 maConfig: 1595 1593 begin 1596 ShellExecute(Handle, 'open', pchar(HomeDir + 'Configurator.exe'), 1597 pchar('-r"' + ParamStr(0) + '"'), '', SW_SHOWNORMAL); 1594 OpenDocument(pchar(HomeDir + 'Configurator.exe'));{ *Převedeno z ShellExecute* } 1598 1595 Close 1599 1596 end; … … 1603 1600 DirectHelp(cStartCredits); 1604 1601 maAIDev: 1605 ShellExecute(Handle, 'open', 1606 pchar(HomeDir + 'AI Template\AI development manual.html'), '', '', 1607 SW_SHOWNORMAL); 1602 OpenDocument(pchar(HomeDir + 'AI Template\AI development manual.html'));{ *Převedeno z ShellExecute* } 1608 1603 maWeb: 1609 ShellExecute(Handle, 'open', 'http://c-evo.org', '', '', SW_SHOWNORMAL)1604 OpenURL('http://c-evo.org'){ *Převedeno z ShellExecute* } 1610 1605 end; 1611 1606 end
Note:
See TracChangeset
for help on using the changeset viewer.