(file) Return to file.h CVS log (file) (dir) Up to [OMI] / omi / pal

 1 krisbash 1.1 #ifndef _pal_file_h
 2              #define _pal_file_h
 3              
 4              #include <stdio.h>
 5              
 6              #include "palcommon.h"
 7              
 8              PAL_BEGIN_EXTERNC
 9              
10              FILE* File_Open(
11                  _In_z_ const char* path,
12                  _In_z_ const char* mode);
13              
14              void File_Close(FILE* fp);
15              
16              int File_Remove(
17                  _In_z_ const char* path);
18              
19              int File_Touch(
20                  _In_z_ const char* path);
21              
22 krisbash 1.1 int File_Copy(
23                  _In_z_ const char* src,
24                  _In_z_ const char* dest);
25              
26              PAL_END_EXTERNC
27              
28              #endif /* _pal_file_h */

ViewCVS 0.9.2