This commit is contained in:
2018-03-19 18:32:42 +03:00
parent e9c9205fae
commit 3f96eac235
3 changed files with 6 additions and 8 deletions

View File

@@ -8,6 +8,7 @@
<Unit0>
<Filename Value="fpcunitproject1.lpr"/>
<IsPartOfProject Value="True"/>
<IsVisibleTab Value="True"/>
<CursorPos Y="9"/>
<UsageCount Value="23"/>
<Loaded Value="True"/>
@@ -25,7 +26,6 @@
<Unit2>
<Filename Value="..\Source\FasmOnDelphi.pas"/>
<IsPartOfProject Value="True"/>
<IsVisibleTab Value="True"/>
<EditorIndex Value="3"/>
<TopLine Value="172"/>
<CursorPos X="25" Y="195"/>

Submodule Fasm4Delphi updated: f41b4fa6da...afafa5af7f

View File

@@ -104,10 +104,6 @@ type
OutStr:string;
Lines:array of TFasmLine;
end;
TErrorNamePair=record
Name:string;
Code:TFasmError;
end;
const
FasmPath='fasm';
@@ -364,12 +360,13 @@ end
else
begin
{$ENDIF}
s:=FasmTemp+GetTickCount64.ToString();
{$IFDEF MSWINDOWS}
s:=FasmTemp+GetTickCount.ToString();
FileHandle:=CreateFile(PChar(s+'.in'),GENERIC_WRITE,0,nil,CREATE_ALWAYS,128,0);
WriteFile(FileHandle,PAnsiChar(Source)^,length(Source),nr,nil);
CloseHandle(FileHandle);
{$ELSE}
s:=FasmTemp+GetTickCount64.ToString();
AssignFile(f,PChar(s+'.in'));
rewrite(f);
write(f,Source);
@@ -486,12 +483,13 @@ end
else
begin
{$ENDIF}
s:=FasmTemp+GetTickCount64.ToString();
{$IFDEF MSWINDOWS}
s:=FasmTemp+GetTickCount.ToString();
FileHandle:=CreateFile(PChar(s),GENERIC_WRITE,0,nil,CREATE_ALWAYS,128,0);
WriteFile(FileHandle,PAnsiChar(Source)^,length(Source),nr,nil);
CloseHandle(FileHandle);
{$ELSE}
s:=FasmTemp+GetTickCount64.ToString();
AssignFile(f,PChar(s));
rewrite(f);
write(f,Source);