home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Shareware - Software Farm 2
/
wosw_2.zip
/
wosw_2
/
CPROG
/
FCOPY32.ZIP
/
FCOPY.H
< prev
next >
Wrap
C/C++ Source or Header
|
1992-05-12
|
729b
|
30 lines
/* FCOPY.H -- function prototypes */
/* Updated May 12, 1992 */
#define DISKFUL -2
#define NOCOPY -3
#if __STDC__
#define _Cdecl
#else
#define _Cdecl cdecl
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* function prototypes */
int _Cdecl _copyfile (int source, int target, char far *buf,
unsigned bsize);
int _Cdecl _farread (int handle, void far *buf, unsigned bsize);
int _Cdecl _farwrite (int handle, void far *buf, unsigned bsize);
int _Cdecl fcopy (char *sourcename, char *targetname);
char *_Cdecl strtrim (char *string);
int _Cdecl truename (char *pathname, char *qualname);
#ifdef __cplusplus
}
#endif