Changeset 16765 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Feb 14, 2009 8:49:30 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42818
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/base64.cpp
r16762 r16765 447 447 * may contain an invalid Base64 string. 448 448 * 449 * @param pvData The data to encode. 450 * @param cbData The number of bytes to encode. 449 451 * @param pszBuf Where to put the Base64 string. 450 452 * @param cbBuf The size of the output buffer, including the terminator. 451 * @param pvData The data to encode. 452 * @param cbData The number of bytes to encode. 453 */ 454 RTDECL(int) RTBase64Encode(char *pszBuf, size_t cbBuf, const void *pvData, size_t cbData) 453 * @param pcchActual The actual number of characters returned. 454 */ 455 RTDECL(int) RTBase64Encode(const void *pvData, size_t cbData, char *pszBuf, size_t cbBuf, size_t *pcchActual) 455 456 { 456 457 /** @todo implement RTBase64Encode. */
Note:
See TracChangeset
for help on using the changeset viewer.