Discussions
Sign In
•
Register
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In with LMD account
Sign In with LMD account
Categories
Recent Discussions
Categories
All Categories
1.1K
NG Controls
28
Announcements
60
LMD IDE-Tools
208
LMD ElPack
373
LMD-Tools
414
Feature Requests
38
In this Discussion
Alexander Hramov
January 2012
BernhardGeyer
January 2012
Bug in LMDFileCreate (LMDFiles.pas) when getting SVN-Version
BernhardGeyer
December 2011
edited December 2011
in
LMD IDE-Tools
Vote Up
0
Vote Down
Following lines must be delete:
<<<<<<< .mine
{$IFDEF D+}
{$R+}
{$ENDIF D+}
0, nil, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0));
=======
>>>>>>> .r8939
Comments
3 Comments
sorted by
Votes
Date Added
Alexander Hramov
January 2012
Posts: 0
Accepted Answer
Vote Up
0
Vote Down
We haven't such lines in LMDFiles.pas from svn.
function LMDFileCreate(const FileName: TLMDString): THandle;
begin
{$IFDEF LMD_UNICODE}
Result := Integer(CreateFileW(PWideChar(FileName), GENERIC_READ or GENERIC_WRITE, 0,
nil, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0));
{$ELSE}
Result := Integer(Windows.CreateFile(PChar(FileName), GENERIC_READ or GENERIC_WRITE, 0,
nil, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0));
{$ENDIF}
end;
BernhardGeyer
January 2012
edited January 2012
Posts: 69
Vote Up
0
Vote Down
Ok. So it seem that there was done a merge on my checkout-directory.
Sign In
or
Register
to comment.
Comments