Hi,
danke für die schnelle Hilfe.
Ich habe den Code wie folgt in den Projektcode eingefügt:
Delphi-Quellcode:
program dummy4butler;
uses
Forms,
butler_dummy in 'butler_dummy.pas' {Form1};
windows;
{$R *.res}
var
dwMutex : DWORD;
begin
dwMutex := CreateMutex(nil,true,'{1E43985D-925A-4733-B556-1BF25A069E3C}');
try
if ((dwMutex <> 0) and (GetLastError = ERROR_ALREADY_EXISTS)) then exit;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end;
finally
if dwMutex <> 0 then CloseHandle(dwMutex);
end;
end.
Dann bekomme ich Fehlermeldungen vom Compiler:
z.B. (die ersten beiden)
[Error] dummy4butler.dpr(6): Declaration expected but identifier 'windows' found
[Error] dummy4butler.dpr(10): Undeclared identifier: 'DWORD'
usw.
Habe ich es an der falschen Stelle eingefügt?
Mfg
mobed