Changeset 289


Ignore:
Timestamp:
Mar 5, 2006 1:37:41 PM (18 years ago)
Author:
bennylp
Message:

Added PJ_EEOF in pjlib errno.h

Location:
pjproject/trunk/pjlib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/errno.h

    r218 r289  
    264264 */ 
    265265#define PJ_EEXISTS          (PJ_ERRNO_START_STATUS + 15)/* 70015 */ 
     266/** 
     267 * @hideinitializer 
     268 * End of file. 
     269 */ 
     270#define PJ_EEOF             (PJ_ERRNO_START_STATUS + 16)/* 70016 */ 
    266271 
    267272/** @} */   /* pj_errnum */ 
  • pjproject/trunk/pjlib/src/pj/errno.c

    r128 r289  
    6161    { PJ_EINVALIDOP,    "Invalid operation"}, 
    6262    { PJ_ECANCELLED,    "Operation cancelled"}, 
    63     { PJ_EEXISTS,       "Object already exists" } 
     63    { PJ_EEXISTS,       "Object already exists" }, 
     64    { PJ_EEOF,          "End of file" }, 
    6465}; 
    6566 
Note: See TracChangeset for help on using the changeset viewer.