home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C!T ROM 2
/
ctrom_ii_b.zip
/
ctrom_ii_b
/
PROGRAM
/
FOXPRO
/
FCT1_12
/
FC_DISK.HDR
< prev
next >
Wrap
Text File
|
1990-09-28
|
3KB
|
120 lines
#output Force Tools 1.1 - Floppy / harddisk functions
***************************
* DeleteFile(<Char>)
*
* Para : File to delete (No wildcards)
* Ret : Errcode : 0 No error
* 2 File not found
* 3 Acces path not found
* 5 Acces refused (Network)
*
FUNCTION UINT DeleteFile PROTOTYPE
PARAMS CONST CHAR
***************************
* DirChange(<Char>)
*
* Para : Directory to go to
* Ret : Errcode : 0 No error
* 3 Acces path not found
* 5 Acces refused (Network)
*
FUNCTION UINT DirChange PROTOTYPE
PARAMS CONST CHAR
***************************
* DirMake(<Char>)
*
* Para : Directory to make
* Ret : Errcode : 0 No error
* 3 Acces path not found
* 5 Acces refused (Network)
*
FUNCTION UINT DirMake PROTOTYPE
PARAMS CONST CHAR
***************************
* DirName(<Char>)
*
* Para : Drive
* Ret : Name of the actual dir
*
FUNCTION CHAR DirName PROTOTYPE
PARAMS VALUE CHAR
***************************
* DirRemove(<Char>)
*
* Para : Directory to remove
* Ret : Errcode : 0 No error
* 3 Acces path not found
* 5 Acces refused (Network)
* 16 Actual directory
*
FUNCTION UINT DirRemove PROTOTYPE
PARAMS CONST CHAR
***************************
* DiskFree(<Char>)
*
* Para : Drive to get free bytes
*
FUNCTION ULONG DiskFree PROTOTYPE
PARAMS VALUE CHAR
***************************
* DiskName()
*
* Return the actual disk
*
FUNCTION CHAR DiskName PROTOTYPE
***************************
* DiskReady(<CHAR>)
*
* Return .T. if disk is ready
*
FUNCTION LOGICAL DiskReady PROTOTYPE
PARAMS VALUE CHAR
***************************
* DiskReadyW(<CHAR>)
*
* Return .T. if disk is ready
* to write to
*
FUNCTION LOGICAL DiskReadyW PROTOTYPE
PARAMS VALUE CHAR
***************************
* DiskTotal(<Char>)
*
* Para : Drive to get total capicity
*
FUNCTION ULONG DiskTotal PROTOTYPE
PARAMS VALUE CHAR
***************************
* DiskType(<Char>)
*
* Para : Drive to get total capicity
* Ret : Fat Id Drive
*
FUNCTION UINT DiskType PROTOTYPE
PARAMS VALUE CHAR
***************************
* FileMove(<Char>, <CHAR>))
*
* Para : Filename1, Filename2
* Ret : Errcode : 0 No error
* 2 File not found
* 3 Acces path not found
* 5 Acces refused (Network)
* 17 Target not on same device
*
FUNCTION UINT FileMove PROTOTYPE
PARAMS CONST CHAR, CONST CHAR
* eof - fc_disk.hdr