Changeset 104773 in vbox for trunk/include
- Timestamp:
- May 24, 2024 12:56:32 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/clipboard-helper.h
r101878 r104773 62 62 63 63 /** 64 * Returns the length (in UTF-8 characters) of an UTF-16 string with LF EOL. 64 * Returns calculated length (in UTF-8 characters) of normalized UTF-16 string with CRLF EOL. 65 * 66 * This function should be used in order to calculate number of UTF-8 characters 67 * in normalized UTF-16. Normalized string is expected to have LF characters replaced 68 * with CRLF sequences. 65 69 * 66 70 * @returns VBox status code. … … 70 74 * Does not include terminator. 71 75 */ 72 int ShClUtf16 LFLenUtf8(PCRTUTF16 pcwszSrc, size_t cwcSrc, size_t *pchLen);76 int ShClUtf16CalcNormalizedEolToCRLFLength(PCRTUTF16 pcwszSrc, size_t cwcSrc, size_t *pchLen); 73 77 74 78 /**
Note:
See TracChangeset
for help on using the changeset viewer.