- Timestamp:
- Nov 1, 2013 7:11:48 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/pjsua2/pjlib/include/pj/types.h
r4537 r4639 87 87 #endif 88 88 89 90 /** Status is OK. */ 91 #define PJ_SUCCESS 0 92 93 /** True value. */ 94 #define PJ_TRUE 1 95 96 /** False value. */ 97 #define PJ_FALSE 0 89 /** Some constants */ 90 enum pj_constants_ 91 { 92 /** Status is OK. */ 93 PJ_SUCCESS=0, 94 95 /** True value. */ 96 PJ_TRUE=1, 97 98 /** False value. */ 99 PJ_FALSE=0 100 }; 98 101 99 102 /**
Note: See TracChangeset
for help on using the changeset viewer.