FreeBASIC  0.91.0
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 );
11 }