Ignore:
Timestamp:
Feb 28, 2011 7:44:19 AM (13 years ago)
Author:
bennylp
Message:

Initial implementation for re #1202 (PJILB System Information API) for Linux/Unix?

File:
1 edited

Legend:

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

    r3408 r3423  
    11201120PJ_BEGIN_DECL 
    11211121 
     1122/** PJLIB version major number. */ 
     1123#define PJ_VERSION_NUM_MAJOR    1 
     1124 
     1125/** PJLIB version minor number. */ 
     1126#define PJ_VERSION_NUM_MINOR    8 
     1127 
     1128/** PJLIB version revision number. */ 
     1129#define PJ_VERSION_NUM_REV      10 
     1130 
     1131/** 
     1132 * Extra suffix for the version (e.g. "-trunk"), or empty for 
     1133 * web release version. 
     1134 */ 
     1135#define PJ_VERSION_NUM_EXTRA    "-trunk" 
     1136 
     1137/** 
     1138 * PJLIB version number consists of three bytes with the following format: 
     1139 * 0xMMIIRR00, where MM: major number, II: minor number, RR: revision 
     1140 * number, 00: always zero for now. 
     1141 */ 
     1142#define PJ_VERSION_NUM  ((PJ_VERSION_NUM_MAJOR << 24) | \ 
     1143                         (PJ_VERSION_NUM_MINOR << 16) | \ 
     1144                         (PJ_VERSION_NUM_REV << 8)) 
     1145 
    11221146/** 
    11231147 * PJLIB version string constant. @see pj_get_version() 
Note: See TracChangeset for help on using the changeset viewer.