Convert FileNode and ActionFileNode to pointer types.

This commit is contained in:
2015-10-15 00:45:53 +02:00
parent 10e537947d
commit d10efa6642
6 changed files with 133 additions and 126 deletions

View File

@@ -327,7 +327,8 @@ void File_DeleteDirectory(char *path) {
#define MaxBuffer 16384
int File_Copy(const char *pathOrig, const char *pathDest) {
FILE *fOrig, *fDest;
FILE *fOrig;
FILE *fDest;
char *buffer = NULL;
int readLen = 0;
int writeLen = 0;