mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 06:59:26 +02:00
* SetFilePointerEx, requested on forum.
This commit is contained in:
parent
3f4298dbca
commit
1ccc23fa70
@ -1372,7 +1372,8 @@ function CONSOLE_REAL_OUTPUT_HANDLE : HANDLE;
|
||||
function Thread32Next(hSnapshot: HANDLE; var lpte: THREADENTRY32): BOOL; stdcall; external KernelDLL;
|
||||
function Toolhelp32ReadProcessMemory(th32ProcessID: DWORD; lpBaseAddress: pointer; lpBuffer: pointer; cbRead: SIZE_T; lpNumberOfBytesRead: PSIZE_T): BOOL; stdcall; external KernelDLL;
|
||||
function GetFileSizeEx(InFileHandle : THANDLE;OutFileSize : PLARGE_INTEGER): BOOL; stdcall; external kernelDLL;
|
||||
|
||||
function SetFilePointerEx(InFile : THANDLE; InDistanceToMove : LARGE_INTEGER;OutoptNewFilePointer : PLARGE_INTEGER;InMoveMethod : DWORD): BOOL; stdcall; external KernelDLL;
|
||||
|
||||
{$endif read_interface}
|
||||
|
||||
{$ifdef read_implementation}
|
||||
|
@ -1010,6 +1010,7 @@ function OpenWaitableTimer(dwDesiredAccess:DWORD;bInheritHandle:BOOL;lpTimerName
|
||||
|
||||
// native int64 typed overload.
|
||||
function GetFileSizeEx(InFileHandle : THANDLE;OutFileSize : PINT64): BOOL; stdcall; external kernelDLL;
|
||||
function SetFilePointerEx(InFile : THANDLE; InDistanceToMove : Int64;OutoptNewFilePointer : PInt64;InMoveMethod : DWORD): BOOL; stdcall; external KernelDLL;
|
||||
|
||||
// windows because of Delphi compat.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user