Changeset 6071 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Dec 14, 2007 5:41:32 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26762
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/cfgldr.cpp
r5999 r6071 143 143 } 144 144 145 /** 145 /** 146 146 * Converts a string of hex digits to memory bytes. 147 * 147 * 148 148 * @param puszValue String of hex digits to convert. 149 149 * @param pvValue Where to store converted bytes. 150 150 * @param cbValue Size of the @a pvValue array. 151 151 * @param pcbValue Where to store the actual number of stored bytes. 152 * 152 * 153 153 * @return IPRT status code. 154 154 */ … … 214 214 * @param puszValue Where to store the pointer to the resulting string. 215 215 * On success, this string should be freed using RTUtf16Free(). 216 * 216 * 217 217 * @return IPRT status code. 218 218 */ … … 1732 1732 * Gets the value of the given attribute as a UTF-16 string. 1733 1733 * The returned string is owned by CfgNode, the caller must not free it. 1734 * 1734 * 1735 1735 * @param pszName Attribute name. 1736 1736 * @param ppwszValue Where to store a pointer to the attribute value. 1737 * 1737 * 1738 1738 * @return IPRT status code. 1739 1739 */ … … 2829 2829 RTTIME time = { yyyy, (uint8_t) mm, 0, 0, (uint8_t) dd, 2830 2830 (uint8_t) hh, (uint8_t) mi, (uint8_t) ss, 0, 2831 RTTIME_FLAGS_TYPE_UTC };2831 RTTIME_FLAGS_TYPE_UTC, 0 }; 2832 2832 if (RTTimeNormalize (&time)) 2833 2833 {
Note:
See TracChangeset
for help on using the changeset viewer.