more changes for win

This commit is contained in:
Basile Burg 2016-08-22 12:14:40 +02:00
parent cc9420b78d
commit 1e45053e54
3 changed files with 4 additions and 4 deletions

View File

@ -19,6 +19,6 @@ dmd %dast% %dparse% %iz% ^
-of"..\bin\dastworx"
::cleanup
del ..\bin\dastworx.o
del ..\bin\dastworx.obj
echo ...done

View File

@ -311,7 +311,7 @@ class function TStringHash.hash(const key: string; maxBucketsPow2: longword): lo
var
i: integer;
begin
{$PUSH}{$R-}
{$PUSH}{$R-} {$Q-}
result := 2166136261;
for i:= 1 to key.length do
begin
@ -327,7 +327,7 @@ var
ptr: PByte;
i: integer;
begin
{$PUSH}{$R-}
{$PUSH}{$R-} {$Q-}
ptr := PByte(key);
result := 2166136261;
{$IFDEF CPU32}

View File

@ -71,7 +71,7 @@ begin
prc.Executable := str;
prc.Parameters.Add(files);
prc.Parameters.Add('-i');
prc.Options := [poUsePipes, poStderrToOutPut{$IFDEF WINDOWS}, poNewConsole{$ENDIF}];
prc.Options := [poUsePipes {$IFDEF WINDOWS}, poNewConsole{$ENDIF}];
prc.ShowWindow := swoHIDE;
prc.Execute;
prc.CloseInput;