mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 18:25:58 +02:00
+ Redefined Fileopen so it corresponds to ascdef.inc definition
This commit is contained in:
parent
18c394efa8
commit
0efaf5e5c6
@ -315,9 +315,9 @@ end;
|
|||||||
stdcall;external 'kernel32' name 'SetFilePointer';
|
stdcall;external 'kernel32' name 'SetFilePointer';
|
||||||
function GetFileSize(h:longint;p:pointer) : longint;
|
function GetFileSize(h:longint;p:pointer) : longint;
|
||||||
stdcall;external 'kernel32' name 'GetFileSize';
|
stdcall;external 'kernel32' name 'GetFileSize';
|
||||||
function CreateFile(name : pointer;access,sharing : longint;
|
function CreateFile(lpFileName:pchar; dwDesiredAccess:DWORD; dwShareMode:DWORD;
|
||||||
security : PSecurityAttributes;how,attr,template : longint) : longint;
|
lpSecurityAttributes:PSECURITYATTRIBUTES; dwCreationDisposition:DWORD;
|
||||||
stdcall;external 'kernel32' name 'CreateFileA';
|
dwFlagsAndAttributes:DWORD; hTemplateFile:DWORD):longint; external 'kernel32' name 'CreateFileA';
|
||||||
function SetEndOfFile(h : longint) : longbool;
|
function SetEndOfFile(h : longint) : longbool;
|
||||||
stdcall;external 'kernel32' name 'SetEndOfFile';
|
stdcall;external 'kernel32' name 'SetEndOfFile';
|
||||||
function GetFileType(Handle:DWORD):DWord;
|
function GetFileType(Handle:DWORD):DWord;
|
||||||
@ -1539,7 +1539,10 @@ end.
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.48 2003-11-03 09:42:28 marco
|
Revision 1.49 2003-11-24 23:08:37 michael
|
||||||
|
+ Redefined Fileopen so it corresponds to ascdef.inc definition
|
||||||
|
|
||||||
|
Revision 1.48 2003/11/03 09:42:28 marco
|
||||||
* Peter's Cardinal<->Longint fixes patch
|
* Peter's Cardinal<->Longint fixes patch
|
||||||
|
|
||||||
Revision 1.47 2003/10/17 22:15:10 olle
|
Revision 1.47 2003/10/17 22:15:10 olle
|
||||||
|
Loading…
Reference in New Issue
Block a user