Changeset 82280 in vbox for trunk/include/VBox
- Timestamp:
- Nov 29, 2019 11:48:59 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 135104
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/clipboard-helper.h
r82279 r82280 54 54 * @returns VBox status code. 55 55 * 56 * @param p wszSrcThe source UTF-16 string.56 * @param pcwszSrc The source UTF-16 string. 57 57 * @param cwcSrc The length of the source string in RTUTF16 units. 58 58 * @param pcwcDst The length of the destination string in RTUTF16 units. 59 59 */ 60 int ShClUtf16GetWinSize(P RTUTF16 pwszSrc, size_t cwcSrc, size_t *pcwcDst);60 int ShClUtf16GetWinSize(PCRTUTF16 pwszSrc, size_t cwcSrc, size_t *pcwcDst); 61 61 62 62 /** … … 68 68 * @returns VBox status code 69 69 * 70 * @param p wszSrcSource UTF-16 text to convert.71 * @param cwcSrc Size of the source text int RTUTF16 units 70 * @param pcwszSrc Source UTF-16 text to convert. 71 * @param cwcSrc Size of the source text int RTUTF16 units. 72 72 * @param pwszDst Buffer to store the converted text to. 73 73 * @param cwcDst Size of the buffer for the converted text in RTUTF16 units. 74 74 */ 75 int ShClUtf16LinToWin(P RTUTF16 pwszSrc, size_t cwcSrc, PRTUTF16 pwszDst, size_t cwcDst);75 int ShClUtf16LinToWin(PCRTUTF16 pcwszSrc, size_t cwcSrc, PRTUTF16 pwszDst, size_t cwcDst); 76 76 77 77 /** … … 81 81 * @returns RT status code 82 82 * 83 * @param p wszSrc The source UTF-16 string83 * @param pcwszSrc The source UTF-16 string. 84 84 * @param cwcSrc The length of the source string in RTUTF16 units. 85 85 * @param pcwcDst The length of the destination string in RTUTF16 units. 86 86 */ 87 int ShClUtf16GetLinSize(P RTUTF16 pwszSrc, size_t cwcSrc, size_t *pcwcDst);87 int ShClUtf16GetLinSize(PCRTUTF16 pcwszSrc, size_t cwcSrc, size_t *pcwcDst); 88 88 89 89 /** … … 93 93 * @returns VBox status code 94 94 * 95 * @param p wszSrc Text to convert95 * @param pcwszSrc Text to convert. 96 96 * @param cwcSrc Size of the source text in RTUTF16 units. 97 * @param pwszDst The buffer to store the converted text to 98 * @param cwcDst The size of the buffer for the destination text in RTUTF16 99 * chars. 100 */ 101 int ShClUtf16WinToLin(PRTUTF16 pwszSrc, size_t cwcSrc, PRTUTF16 pwszDst, size_t cwcDst); 97 * @param pwszDst The buffer to store the converted text to. 98 * @param cwcDst The size of the buffer for the destination text in RTUTF16 chars. 99 */ 100 int ShClUtf16WinToLin(PCRTUTF16 pcwszSrc, size_t cwcSrc, PRTUTF16 pwszDst, size_t cwcDst); 102 101 103 102 #pragma pack(1)
Note:
See TracChangeset
for help on using the changeset viewer.