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

File: [OMI] / omi / pal / file.h (download)
Revision: 1.1, Mon Apr 20 17:19:55 2015 UTC (9 years ago) by krisbash
Branch: MAIN
CVS Tags: OMI_1_0_8_2, OMI_1_0_8_1, HEAD
OMI 1.0.8-1

#ifndef _pal_file_h
#define _pal_file_h

#include <stdio.h>

#include "palcommon.h"

PAL_BEGIN_EXTERNC

FILE* File_Open(
    _In_z_ const char* path,
    _In_z_ const char* mode);

void File_Close(FILE* fp);

int File_Remove(
    _In_z_ const char* path);

int File_Touch(
    _In_z_ const char* path);

int File_Copy(
    _In_z_ const char* src,
    _In_z_ const char* dest);

PAL_END_EXTERNC

#endif /* _pal_file_h */

ViewCVS 0.9.2