|
@@ -2210,13 +2210,13 @@ function DOSInput: BPTR; syscall AOS_DOSBase 9;
|
|
|
function DOSOutput : BPTR; syscall AOS_DOSBase 10;
|
|
|
function DOSSeek(File_: BPTR; Position: LongInt; Mode: LongInt): LongInt; syscall AOS_DOSBase 11;
|
|
|
function DOSDeleteFile(const Name: STRPTR): LongBool; syscall AOS_DOSBase 12;
|
|
|
-function DOSRename(const OldName: STRPTR; const NewName: STRPTR): LongInt; syscall AOS_DOSBase 13;
|
|
|
+function DOSRename(const OldName: STRPTR; const NewName: STRPTR): LongBool; syscall AOS_DOSBase 13;
|
|
|
function Lock(const Name: STRPTR; AccessMode: LongInt): BPTR; syscall AOS_DOSBase 14;
|
|
|
function UnLock(Lock: BPTR): LongBool; syscall AOS_DOSBase 15;
|
|
|
function DupLock(Lock: BPTR): BPTR; syscall AOS_DOSBase 16;
|
|
|
-function Examine(Lock: BPTR; FileInfoBlock: PFileInfoBlock): LongInt; syscall AOS_DOSBase 17;
|
|
|
-function ExNext(Lock: BPTR; FileInfoBlock: PFileInfoBlock): LongInt; syscall AOS_DOSBase 18;
|
|
|
-function Info(Lock: BPTR; ParameterBlock: PInfoData): LongInt; syscall AOS_DOSBase 19;
|
|
|
+function Examine(Lock: BPTR; FileInfoBlock: PFileInfoBlock): LongBool; syscall AOS_DOSBase 17;
|
|
|
+function ExNext(Lock: BPTR; FileInfoBlock: PFileInfoBlock): LongBool; syscall AOS_DOSBase 18;
|
|
|
+function Info(Lock: BPTR; ParameterBlock: PInfoData): LongBool; syscall AOS_DOSBase 19;
|
|
|
function DOSCreateDir(const Name: STRPTR): BPTR; syscall AOS_DOSBase 20;
|
|
|
function CurrentDir(Lock: BPTR): BPTR; syscall AOS_DOSBase 21;
|
|
|
function IoErr: LongInt; syscall AOS_DOSBase 22;
|
|
@@ -2225,14 +2225,14 @@ procedure DOSExit(ReturnCode: LongInt); syscall AOS_DOSBase 24;
|
|
|
function LoadSeg(const Name: STRPTR): BPTR; syscall AOS_DOSBase 25;
|
|
|
procedure UnLoadSeg(Seglist: BPTR); syscall AOS_DOSBase 26;
|
|
|
function DeviceProc(const Name: STRPTR): PMsgPort; syscall AOS_DOSBase 29;
|
|
|
-function SetComment(const Name: STRPTR; const Comment: STRPTR): LongInt; syscall AOS_DOSBase 30;
|
|
|
-function SetProtection(const Name: STRPTR; Protect: LongWord): LongInt; syscall AOS_DOSBase 31;
|
|
|
+function SetComment(const Name: STRPTR; const Comment: STRPTR): LongBool; syscall AOS_DOSBase 30;
|
|
|
+function SetProtection(const Name: STRPTR; Protect: LongWord): LongBool; syscall AOS_DOSBase 31;
|
|
|
function DateStamp(Date: PDateStamp): PDateStamp; syscall AOS_DOSBase 32;
|
|
|
procedure DOSDelay(TimeOut: LongWord); syscall AOS_DOSBase 33;
|
|
|
-function WaitForChar(File_: BPTR; TimeOut: LongInt): LongInt; syscall AOS_DOSBase 34;
|
|
|
+function WaitForChar(File_: BPTR; TimeOut: LongInt): LongBool; syscall AOS_DOSBase 34;
|
|
|
function ParentDir(Lock: BPTR): BPTR; syscall AOS_DOSBase 35;
|
|
|
function IsInteractive(File_: BPTR): LongInt; syscall AOS_DOSBase 36;
|
|
|
-function Execute(const String_: STRPTR; Input: BPTR; Output: BPTR): LongInt; syscall AOS_DOSBase 37;
|
|
|
+function Execute(const String_: STRPTR; Input: BPTR; Output: BPTR): LongBool; syscall AOS_DOSBase 37;
|
|
|
function AllocDosObject(Type_: LongWord; const Tags: PTagItem): APTR; syscall AOS_DOSBase 38;
|
|
|
function AllocDosObjectTagList(Type_: LongWord; const Tags: PTagItem): APTR; syscall AOS_DOSBase 38;
|
|
|
procedure FreeDosObject(Type_: LongWord; Ptr: APTR); syscall AOS_DOSBase 39;
|
|
@@ -2256,8 +2256,8 @@ function FGets(Fh: BPTR; Buf: STRPTR; BufLen: LongWord): STRPTR; syscall AOS_DOS
|
|
|
function FPuts(File_: BPTR; const String_: STRPTR): LongInt; syscall AOS_DOSBase 57;
|
|
|
function VFWritef(Fh: BPTR; const Fmt: STRPTR; const ArgArray: PLongInt): LongInt; syscall AOS_DOSBase 58;
|
|
|
function VFPrintf(Fh: BPTR; const format: STRPTR; const ArgArray: PLongInt): LongInt; syscall AOS_DOSBase 59;
|
|
|
-function DOSFlush(File_: BPTR): LongInt; syscall AOS_DOSBase 60;
|
|
|
-function SetVBuf(File_: BPTR; Buff: STRPTR; Type_: LongInt; Size: LongInt): LongInt; syscall AOS_DOSBase 61;
|
|
|
+function DOSFlush(File_: BPTR): LongBool; syscall AOS_DOSBase 60;
|
|
|
+function SetVBuf(File_: BPTR; Buff: STRPTR; Type_: LongInt; Size: LongInt): LongBool; syscall AOS_DOSBase 61;
|
|
|
function DupLockFromFH(Lock: BPTR): BPTR; syscall AOS_DOSBase 62;
|
|
|
function OpenFromLock(Lock: BPTR): BPTR; syscall AOS_DOSBase 63;
|
|
|
function ParentOfFH(Fh: BPTR): BPTR; syscall AOS_DOSBase 64;
|
|
@@ -2269,8 +2269,8 @@ function SplitName(const Name: STRPTR; Seperator: LongWord; Buf: STRPTR; OldPos:
|
|
|
function SameLock(Lock1: BPTR; Lock2: BPTR): LongInt; syscall AOS_DOSBase 70;
|
|
|
function SetMode(Fh: BPTR; Mode: LongInt): LongBool; syscall AOS_DOSBase 71;
|
|
|
function ExAll(Lock: BPTR; Buffer: PExAllData; Size: LongInt; Data: LongInt; Control: PExAllControl): LongBool; syscall AOS_DOSBase 72;
|
|
|
-function ReadLink(Port: PMsgPort; Lock: LongInt; const Path: STRPTR; Buffer: STRPTR; Size: LongWord): LongInt; syscall AOS_DOSBase 73;
|
|
|
-function MakeLink(const Name: STRPTR; Dest: APTR; Soft: LongInt): LongInt; syscall AOS_DOSBase 74;
|
|
|
+function ReadLink(Port: PMsgPort; Lock: LongInt; const Path: STRPTR; Buffer: STRPTR; Size: LongWord): LongBool; syscall AOS_DOSBase 73;
|
|
|
+function MakeLink(const Name: STRPTR; Dest: APTR; Soft: LongInt): LongBool; syscall AOS_DOSBase 74;
|
|
|
function ChangeMode(Type_: LongWord; Object_: BPTR; NewMode: LongWord): LongBool; syscall AOS_DOSBase 75;
|
|
|
function SetFileSize(File_: BPTR; Offset: LongInt; Mode: LongInt): LongInt; syscall AOS_DOSBase 76;
|
|
|
function SetIoErr(Result_: LongInt): LongInt; syscall AOS_DOSBase 77;
|
|
@@ -2300,26 +2300,26 @@ function SetProgramDir(Lock: BPTR): BPTR; syscall AOS_DOSBase 99;
|
|
|
function GetProgramDir: BPTR; syscall AOS_DOSBase 100;
|
|
|
function SystemTagList(const Command: STRPTR; const Tags: PTagItem): LongInt; syscall AOS_DOSBase 101;
|
|
|
function DOSSystem(const Command: STRPTR; const Tags: PTagItem): LongInt; syscall AOS_DOSBase 101;
|
|
|
-function AssignLock(const Name: STRPTR; Lock: BPTR): LongInt; syscall AOS_DOSBase 102;
|
|
|
+function AssignLock(const Name: STRPTR; Lock: BPTR): LongBool; syscall AOS_DOSBase 102;
|
|
|
function AssignLate(const Name: STRPTR; const Path: STRPTR): LongBool; syscall AOS_DOSBase 103;
|
|
|
function AssignPath(const Name: STRPTR; const Path: STRPTR): LongBool; syscall AOS_DOSBase 104;
|
|
|
function AssignAdd(const Name: STRPTR; Lock: BPTR): LongBool; syscall AOS_DOSBase 105;
|
|
|
-function RemAssignList(const Name: STRPTR; Lock: BPTR): LongInt; syscall AOS_DOSBase 106;
|
|
|
+function RemAssignList(const Name: STRPTR; Lock: BPTR): LongBool; syscall AOS_DOSBase 106;
|
|
|
function GetDeviceProc(const Name: STRPTR; Dp: PDevProc): PDevProc; syscall AOS_DOSBase 107;
|
|
|
procedure FreeDeviceProc(Dp: PDevProc); syscall AOS_DOSBase 108;
|
|
|
function LockDosList(Flags: LongWord): PDosList; syscall AOS_DOSBase 109;
|
|
|
procedure UnLockDosList(Flags: LongWord); syscall AOS_DOSBase 110;
|
|
|
function AttemptLockDosList(Flags: LongWord): PDosList; syscall AOS_DOSBase 111;
|
|
|
-function RemDosEntry(DList: PDosList): LongInt; syscall AOS_DOSBase 112;
|
|
|
-function AddDosEntry(DList: PDosList): LongInt; syscall AOS_DOSBase 113;
|
|
|
+function RemDosEntry(DList: PDosList): LongBool; syscall AOS_DOSBase 112;
|
|
|
+function AddDosEntry(DList: PDosList): LongBool; syscall AOS_DOSBase 113;
|
|
|
function FindDosEntry(const DList: PDosList; const Name: STRPTR; Flags: LongWord): PDosList; syscall AOS_DOSBase 114;
|
|
|
function NextDosEntry(const DList: PDosList; Flags: LongWord): PDosList; syscall AOS_DOSBase 115;
|
|
|
function MakeDosEntry(const Name: STRPTR; Type_: LongInt): PDosList; syscall AOS_DOSBase 116;
|
|
|
procedure FreeDosEntry(DList: PDosList); syscall AOS_DOSBase 117;
|
|
|
function IsFileSystem(const Name: STRPTR): LongBool; syscall AOS_DOSBase 118;
|
|
|
-function DosFormat(const DeviceName: STRPTR; const VolumeName: STRPTR; DosType: LongWord): LongBool; syscall AOS_DOSBase 119;
|
|
|
-function Relabel(const Drive: STRPTR; const NewName: STRPTR): LongInt; syscall AOS_DOSBase 120;
|
|
|
-function Inhibit(const Name: STRPTR; OnOff: LongInt): LongInt; syscall AOS_DOSBase 121;
|
|
|
+function Format(const DeviceName: STRPTR; const VolumeName: STRPTR; DosType: LongWord): LongBool; syscall AOS_DOSBase 119;
|
|
|
+function Relabel(const Drive: STRPTR; const NewName: STRPTR): LongBool; syscall AOS_DOSBase 120;
|
|
|
+function Inhibit(const Name: STRPTR; OnOff: LongInt): LongBool; syscall AOS_DOSBase 121;
|
|
|
function AddBuffers(const DeviceName: STRPTR; NumbBuffers: LongInt): LongBool; syscall AOS_DOSBase 122;
|
|
|
function CompareDates(const Date1: PDateStamp; const Date2: PDateStamp): LongInt; syscall AOS_DOSBase 123;
|
|
|
function DOSDateToStr(Datetime: _PDateTime): LongBool; syscall AOS_DOSBase 124;
|
|
@@ -2330,7 +2330,7 @@ function NewLoadSeg(const File_: STRPTR; const Tags: PTagItem): BPTR; syscall AO
|
|
|
function NewLoadSegTagList(const File_: STRPTR; const Tags: PTagItem): BPTR; syscall AOS_DOSBase 128;
|
|
|
function AddSegment(const Name: STRPTR; Seg: BPTR; Type_: LongInt): LongBool; syscall AOS_DOSBase 129;
|
|
|
function FindSegment(const Name: STRPTR; const Seg: PSegment; System: LongBool): PSegment; syscall AOS_DOSBase 130;
|
|
|
-function RemSegment(Seg: PSegment): LongInt; syscall AOS_DOSBase 131;
|
|
|
+function RemSegment(Seg: PSegment): LongBool; syscall AOS_DOSBase 131;
|
|
|
function CheckSignal(Mask: LongInt): LongInt; syscall AOS_DOSBase 132;
|
|
|
function ReadArgs(const Template: STRPTR; Array_: PIPTR; RdArgs: PRDArgs): PRDArgs; syscall AOS_DOSBase 133;
|
|
|
function FindArg(const Template: STRPTR; const KeyWord: STRPTR): LongInt; syscall AOS_DOSBase 134;
|
|
@@ -2349,7 +2349,7 @@ function StartNotify(Notify: PNotifyRequest): LongBool; syscall AOS_DOSBase 148;
|
|
|
procedure EndNotify(Notify: PNotifyRequest); syscall AOS_DOSBase 149;
|
|
|
function SetVar(const Name: STRPTR; Buffer: PChar; Size: LongInt; Flags: LongInt): LongBool; syscall AOS_DOSBase 150;
|
|
|
function GetVar(const Name: STRPTR; Buffer: STRPTR; Size: LongInt; Flags: LongInt): LongInt; syscall AOS_DOSBase 151;
|
|
|
-function DeleteVar(const Name: STRPTR; Flags: LongWord): LongInt; syscall AOS_DOSBase 152;
|
|
|
+function DeleteVar(const Name: STRPTR; Flags: LongWord): LongBool; syscall AOS_DOSBase 152;
|
|
|
function FindVar(const Name: STRPTR; Type_: LongWord): PLocalVar; syscall AOS_DOSBase 153;
|
|
|
function CliInit(Dp: PDosPacket): IPTR; syscall AOS_DOSBase 154;
|
|
|
function CliInitNewcli(Dp: PDosPacket): IPTR; syscall AOS_DOSBase 155;
|