VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedClipboard/clipboard-helper.h@ 9734

Last change on this file since 9734 was 8155, checked in by vboxsync, 17 years ago

The Big Sun Rebranding Header Change

  • Property eol-style set to native
  • Property svn:keywords set to Date Revision Author Id
File size: 3.3 KB
Line 
1/* $Id: clipboard-helper.h 8155 2008-04-18 15:16:47Z vboxsync $ */
2/** @file
3 * Shared Clipboard: Some helper function for converting between the various eol.
4 */
5
6/*
7 * Copyright (C) 2006-2008 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ___CLIPBOARD_HELPER_H
23#define ___CLIPBOARD_HELPER_H
24
25#include <iprt/string.h>
26
27/** Constants needed for string conversions done by the Linux/Mac clipboard code. */
28enum {
29 /** In Linux, lines end with a linefeed character. */
30 LINEFEED = 0xa,
31 /** In Windows, lines end with a carriage return and a linefeed character. */
32 CARRIAGERETURN = 0xd,
33 /** Little endian "real" Utf16 strings start with this marker. */
34 UTF16LEMARKER = 0xfeff,
35 /** Big endian "real" Utf16 strings start with this marker. */
36 UTF16BEMARKER = 0xfffe
37};
38
39/**
40 * Get the size of the buffer needed to hold a Utf16-LE zero terminated string with Windows EOLs
41 * converted from a Utf16 string with Linux EOLs.
42 *
43 * @returns RT error code
44 *
45 * @param pwszSrc The source Utf16 string
46 * @param cwSrc The length in 16 bit words of the source string
47 * @retval pcwDest The length of the destination string in 16 bit words
48 */
49int vboxClipboardUtf16GetWinSize(PRTUTF16 pwszSrc, size_t cwSrc, size_t *pcwDest);
50
51/**
52 * Convert a Utf16 text with Linux EOLs to null-terminated Utf16-LE with Windows EOLs. Does no
53 * checking for validity.
54 *
55 * @returns VBox status code
56 *
57 * @param pwszSrc Source Utf16 text to convert
58 * @param cwSrc Size of the source text in 16 bit words
59 * @retval pu16Dest Buffer to store the converted text to.
60 * @retval pcwDest Size of the buffer for the converted text in 16 bit words
61 */
62int vboxClipboardUtf16LinToWin(PRTUTF16 pwszSrc, size_t cwSrc, PRTUTF16 pu16Dest, size_t cwDest);
63
64/**
65 * Get the size of the buffer needed to hold a zero-terminated Utf16 string with Linux EOLs
66 * converted from a Utf16 string with Windows EOLs.
67 *
68 * @returns RT status code
69 *
70 * @param pwszSrc The source Utf16 string
71 * @param cwSrc The length in 16 bit words of the source string
72 * @retval pcwDest The length of the destination string in 16 bit words
73 */
74int vboxClipboardUtf16GetLinSize(PRTUTF16 pwszSrc, size_t cwSrc, size_t *pcwDest);
75
76/**
77 * Convert Utf16-LE text with Windows EOLs to zero-terminated Utf16 with Linux EOLs. This
78 * function does not verify that the Utf16 is valid.
79 *
80 * @returns VBox status code
81 *
82 * @param pwszSrc Text to convert
83 * @param cwSrc Size of the source text in 16 bit words
84 * @param pu16Dest The buffer to store the converted text to
85 * @param cwDest The size of the buffer for the destination text in 16 bit words
86 */
87int vboxClipboardUtf16WinToLin(PRTUTF16 pwszSrc, size_t cwSrc, PRTUTF16 pu16Dest, size_t cwDest);
88
89#endif
90
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette