Changeset 85836 in vbox for trunk/include/VBox
- Timestamp:
- Aug 19, 2020 4:24:34 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139998
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/clipboard-helper.h
r85828 r85836 100 100 * @param cwcDst Where to return the size of the converted string in RTUTF16 units. Includes terminator. 101 101 */ 102 int ShClConvUtf16LFToCRLFA( RTUTF16 *pwcSrc, size_t cwcSrc, PRTUTF16 *ppwszDst, size_t *pcwDst);102 int ShClConvUtf16LFToCRLFA(PCRTUTF16 pcwszSrc, size_t cwcSrc, PRTUTF16 *ppwszDst, size_t *pcwDst); 103 103 104 104 /** … … 117 117 * 118 118 * @returns VBox status code. Will return VERR_NO_DATA if no data was converted. 119 * @param p wszSrcUTF-16 string to convert.119 * @param pcwszSrc UTF-16 string to convert. 120 120 * @param cbSrc Length of @a pwszSrc (in bytes). 121 121 * @param pszBuf Where to write the converted string. … … 123 123 * @param pcbLen Where to store the size (in bytes) of the converted string. Includes terminator. 124 124 */ 125 int ShClConvUtf16CRLFToUtf8LF(P RTUTF16 pwszSrc, size_t cbSrc, char *pszBuf, size_t cbBuf, size_t *pcbLen);125 int ShClConvUtf16CRLFToUtf8LF(PCRTUTF16 pcwszSrc, size_t cbSrc, char *pszBuf, size_t cbBuf, size_t *pcbLen); 126 126 127 127 /** … … 129 129 * 130 130 * @returns VBox status code. 131 * @param p wcSrc The source text.132 * @param cw SrcLength (in RTUTF16 units) of the source text.131 * @param pcwszSrc UTF-16 string to convert. 132 * @param cwcSrc Length (in RTUTF16 units) of the source text. 133 133 * @param ppszDst Where to store the converted result on success. 134 134 * @param pcbDst Where to store the number of bytes written. 135 135 */ 136 int ShClConvUtf16ToUtf8HTML( RTUTF16 *pwcSrc, size_t cwSrc, char **ppszDst, size_t *pcbDst);136 int ShClConvUtf16ToUtf8HTML(PCRTUTF16 pcwszSrc, size_t cwcSrc, char **ppszDst, size_t *pcbDst); 137 137 138 138 /** … … 140 140 * 141 141 * @returns VBox status code. 142 * @param p szSrcUTF-8 string to convert.142 * @param pcszSrc UTF-8 string to convert. 143 143 * @param cbSrc Size of UTF-8 string to convert (in bytes), not counting the terminating zero. 144 144 * @param ppwszDst Where to return the allocated buffer on success. 145 145 * @param pcwDst Where to return the size (in RTUTF16 units) of the allocated buffer on success. Includes terminator. 146 146 */ 147 int ShClConvUtf8LFToUtf16CRLF(const char *p szSrc, unsigned cbSrc, PRTUTF16 *ppwszDst, size_t *pcwDst);147 int ShClConvUtf8LFToUtf16CRLF(const char *pcszSrc, unsigned cbSrc, PRTUTF16 *ppwszDst, size_t *pcwDst); 148 148 149 149 /** … … 151 151 * 152 152 * @returns VBox status code. 153 * @param p szSrcUTF-8 string to convert.153 * @param pcszSrc UTF-8 string to convert. 154 154 * @param cbSrc Size of string (in bytes), not counting the terminating zero. 155 155 * @param ppwszDst Where to return the allocated buffer on success. 156 156 * @param pcwDst Where to return the size (in RTUTF16 units) of the allocated buffer on success. Includes terminator. 157 157 */ 158 int ShClConvLatin1LFToUtf16CRLF(const char *p szSrc, unsigned cbSrc, PRTUTF16 *ppwszDst, size_t *pcwDst);158 int ShClConvLatin1LFToUtf16CRLF(const char *pcszSrc, unsigned cbSrc, PRTUTF16 *ppwszDst, size_t *pcwDst); 159 159 160 160 #pragma pack(1)
Note:
See TracChangeset
for help on using the changeset viewer.