Changeset 289
- Timestamp:
- Mar 5, 2006 1:37:41 PM (19 years ago)
- Location:
- pjproject/trunk/pjlib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/errno.h
r218 r289 264 264 */ 265 265 #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 */ 266 271 267 272 /** @} */ /* pj_errnum */ -
pjproject/trunk/pjlib/src/pj/errno.c
r128 r289 61 61 { PJ_EINVALIDOP, "Invalid operation"}, 62 62 { PJ_ECANCELLED, "Operation cancelled"}, 63 { PJ_EEXISTS, "Object already exists" } 63 { PJ_EEXISTS, "Object already exists" }, 64 { PJ_EEOF, "End of file" }, 64 65 }; 65 66
Note: See TracChangeset
for help on using the changeset viewer.