Changeset 28043 for trunk/psLib
- Timestamp:
- May 19, 2010, 5:13:52 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
psLib/src/sys/psConfigure.c (modified) (1 diff)
-
psLib/src/sys/psConfigure.h (modified) (1 diff)
-
psLib/src/types/psMetadataHeader.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/czw_branch/20100427 (added) merged: 27784,28017-28018,28028-28033,28042
- Property svn:mergeinfo changed
-
trunk/psLib/src/sys/psConfigure.c
r23793 r28043 66 66 } 67 67 68 psString psLibRevision(void) 69 { 70 char *value = NULL; 71 psStringAppend(&value, "%s", PSLIB_VERSION); 72 return value; 73 } 74 68 75 psString psLibSource(void) 69 76 { -
trunk/psLib/src/sys/psConfigure.h
r23148 r28043 32 32 */ 33 33 psString psLibVersion(void); 34 35 /** Get current psLib revision number 36 * 37 * Returns the current psLib revision number as a string. 38 * 39 * @return psString: String with revision number. 40 */ 41 psString psLibRevision(void); 34 42 35 43 /** Get current psLib source -
trunk/psLib/src/types/psMetadataHeader.c
r23289 r28043 17 17 psString version = psLibVersion(); // Software version 18 18 psString source = psLibSource(); // Software source 19 19 psString revision = psLibRevision(); 20 psMetadataAddStr(header, PS_LIST_TAIL, "PSLIB_V", PS_META_REPLACE, NULL, revision); 21 20 22 psStringPrepend(&version, "psLib version: "); 21 23 psStringPrepend(&source, "psLib source: "); … … 26 28 psFree(version); 27 29 psFree(source); 28 30 psFree(revision); 29 31 return true; 30 32 }
Note:
See TracChangeset
for help on using the changeset viewer.
