Changeset 88 for oup/current
- Timestamp:
- Jan 15, 2007, 6:12:51 PM (18 years ago)
- Location:
- oup/current
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
oup/current/OniUnPacker.bdsproj
r56 r88 176 176 <Language Name="ProjectLang">$00000000</Language> 177 177 <Language Name="RootDir"></Language> 178 </Language> <Excluded_Packages> 178 </Language> 179 180 181 182 <Excluded_Packages> 179 183 <Excluded_Packages Name="d:\programme\borland\bds\3.0\Bin\dbwebxprt.bpl">Borland Web Wizard Package</Excluded_Packages> 180 184 </Excluded_Packages> -
oup/current/OniUnPacker.dpr
r74 r88 2 2 3 3 uses 4 Forms, 4 Forms, Windows, 5 5 Main in 'Main.pas' {Form_Main}, 6 6 Data in 'Data.pas', … … 24 24 {$R *.res} 25 25 {$R ExtraIcos.res} 26 const 27 MutexName = 'Oni Un/Packer'; 28 var 29 hMutex: THandle; 26 30 27 31 begin 28 Application.Initialize; 29 Application.Title := 'Oni Un/Packer'; 30 Application.CreateForm(TForm_Main, Form_Main); 31 Application.CreateForm(TForm_LevelDB, Form_LevelDB); 32 Application.CreateForm(TForm_ValueEdit, Form_ValueEdit); 33 Application.CreateForm(TForm_Settings, Form_Settings); 34 Application.Run; 32 hMutex := CreateMutex(nil, True, MutexName); 33 if (hMutex = 0) or (GetLastError = ERROR_ALREADY_EXISTS) then 34 begin 35 PostMessage(HWND_BROADCAST, 0, 0, 0); 36 end 37 else 38 begin 39 Application.Initialize; 40 Application.Title := 'Oni Un/Packer'; 41 Application.CreateForm(TForm_Main, Form_Main); 42 Application.CreateForm(TForm_LevelDB, Form_LevelDB); 43 Application.CreateForm(TForm_ValueEdit, Form_ValueEdit); 44 Application.CreateForm(TForm_Settings, Form_Settings); 45 Application.Run; 46 end; 47 CloseHandle(hMutex); 35 48 end.
Note:
See TracChangeset
for help on using the changeset viewer.