Changeset 16765 in vbox for trunk/include/iprt
- Timestamp:
- Feb 14, 2009 8:49:30 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/base64.h
r16760 r16765 108 108 * may contain an invalid Base64 string. 109 109 * 110 * @param pvData The data to encode. 111 * @param cbData The number of bytes to encode. 110 112 * @param pszBuf Where to put the Base64 string. 111 113 * @param cbBuf The size of the output buffer, including the terminator. 112 * @param pvData The data to encode. 113 * @param cbData The number of bytes to encode. 114 * @param pcchActual The actual number of characters returned. 114 115 */ 115 RTDECL(int) RTBase64Encode(char *pszBuf, size_t cbBuf, const void *pvData, size_t cbData); 116 116 RTDECL(int) RTBase64Encode(const void *pvData, size_t cbData, char *pszBuf, size_t cbBuf, size_t *pcchActual); 117 117 118 118 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.