Changeset 109 in libcf for trunk/include/cf_file.h


Ignore:
Timestamp:
06/04/13 14:25:10 (11 years ago)
Author:
cheese
Message:

#1 add typical data structure algorithms (linked-list / queue / stak) and rename symbol for context of each modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/cf_file.h

    r94 r109  
    1515
    1616/** 파일 열기 옵션 플래그 */
    17 typedef enum {
     17typedef enum
     18{
    1819    CF_FILE_READ        = 0x0001,   /**< 읽기 전용 */
    1920    CF_FILE_WRITE       = 0x0002,   /**< 쓰기 전용 */
     
    2223    CF_FILE_TRUNC       = 0x0010,   /**< 파일이 존재하면 비우기 */
    2324    CF_FILE_APPEND      = 0x0020    /**< 파일이 존재하면 이어서 쓰기 */
    24 } E_CF_FILE_FLAG, CF_FILE_FLAG;
     25} CF_FILE_FLAG;
    2526
    2627#ifdef __cplusplus
     
    5152CF_File_GetSize         (const char * path);
    5253
     54CF_EXPORT CF_BOOL
     55CF_File_Exists          (const char * path);
     56
    5357CF_EXPORT int
    5458CF_File_MakeDirectory   (const char * path);
Note: See TracChangeset for help on using the changeset viewer.