Files
lazarus-ccr/applications/cactusjukebox/tools/cactus.pas
sekelsenmat 6f8c048343 Adds the cactus jukebox to the lazarus ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1748 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-07-21 09:39:48 +00:00

28 lines
479 B
ObjectPascal
Executable File

{
helper application to start cactus jukebox in simple player mode
written by Sebastian Kraft, <c> 2006
Contact the author at: sebastian_kraft@gmx.de
This Software is published under the GPL
}
program cactus;
uses sysutils, dos;
var tmps: string;
i: byte;
begin
setCurrentDir(ExtractFilePath(Paramstr(0)));
//tmps:=' -p';
for i:= 1 to ParamCount do tmps:=tmps+' '+ParamStr(i);
writeln('starting cactus in player mode...');
exec('cactus_jukebox',tmps);
end.