mirror of https://gitlab.com/basile.b/dexed.git
more changes for win
This commit is contained in:
parent
cc9420b78d
commit
1e45053e54
|
@ -19,6 +19,6 @@ dmd %dast% %dparse% %iz% ^
|
|||
-of"..\bin\dastworx"
|
||||
|
||||
::cleanup
|
||||
del ..\bin\dastworx.o
|
||||
del ..\bin\dastworx.obj
|
||||
|
||||
echo ...done
|
|
@ -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}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue