Subversion Repositories aysalia

Compare Revisions

Regard whitespace Rev 24 → Rev 23

/trunk/Aysalia DOS/Source/AyDos.dpr
1,7 → 1,7
program AyDos;
 
// Aysalia DOS Launcher
// Revision 2018-12-07
// Revision 2018-12-06
// (C) 2018 Daniel Marschall, ViaThinkSoft
 
// This launcher does launch DOSBox with the correct *.conf file,
19,9 → 19,7
DOSBOX_EXE = 'DOSBox.exe';
 
var
hPsApiDll: Cardinal = 0;
hIcon: THandle = 0;
bCeneredOnce: boolean = false;
hPsApiDll: cardinal;
 
(*
function GetModuleFileNameEx(inProcess: THandle; inModule: THandle;
64,6 → 62,10
end;
{$ENDIF}
 
var
hIcon: THandle = 0;
bCeneredOnce: boolean = false;
 
procedure ChangeTitleAndIcon(hWnd: Thandle);
var
Title: array[0..255] of Char;
202,6 → 204,5
ExitCode := Main;
finally
FreeLibrary(hPsApiDll);
hPsApiDll := 0;
end;
end.