Delphi Pascal / Windows API - Small problem with SetFilePointerEx and parameter FILE_END
- by SuicideClutchX2
I know I am about to be slapped by at least one person who was helping me with this API.
Alright I have been able to use SetFilePointerEx just fine, when setting the position only.
SetFilePointerEx(PD,512,@PositionVar,FILE_BEGIN);
SetFilePointerEx(PD,0,@PositionVar,FILE_CURRENT);
Both work, I can set positions and even check my current one. …