FreeBASIC
0.91.0
Main Page
Data Structures
Files
File List
Globals
file_copy.c
Go to the documentation of this file.
1
/* file copy */
2
3
#include "../fb.h"
4
#include <windows.h>
5
6
FBCALL
int
fb_FileCopy
(
const
char
*source,
const
char
*destination )
7
{
8
BOOL
res;
9
res = CopyFile( source, destination,
FALSE
);
10
return
fb_ErrorSetNum
( res ==
FALSE
?
FB_RTERROR_ILLEGALFUNCTIONCALL
:
FB_RTERROR_OK
);
11
}
rtlib
win32
file_copy.c
Generated on Thu Jan 23 2014 19:40:08 for FreeBASIC by
1.8.4