VirtualBox

Changeset 80459 in vbox


Ignore:
Timestamp:
Aug 28, 2019 8:34:32 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
132950
Message:

Shared Clipboard/URI: Docs.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/GuestHost/SharedClipboard-uri.h

    r80444 r80459  
    467467} VBOXCLIPBOARDLIST, *PVBOXCLIPBOARDLIST;
    468468
     469/**
     470 * Structure for keeping a Shared Clipboard object data chunk.
     471 */
    469472typedef struct _VBOXCLIPBOARDOBJDATACHUNK
    470473{
     474    /** Handle of object this data chunk is related to. */
    471475    uint64_t  uHandle;
     476    /** Pointer to actual data chunk. */
    472477    void     *pvData;
     478    /** Size (in bytes) of data chunk. */
    473479    uint32_t  cbData;
    474480} VBOXCLIPBOARDOBJDATACHUNK, *PVBOXCLIPBOARDOBJDATACHUNK;
  • trunk/src/VBox/GuestHost/SharedClipboard/clipboard-common.cpp

    r80444 r80459  
    9292}
    9393
     94/**
     95 * Creates (initializes) an event.
     96 *
     97 * @returns VBox status code.
     98 * @param   pEvent              Event to initialize.
     99 * @param   uID                 ID to use for the event.
     100 */
    94101int SharedClipboardEventCreate(PSHAREDCLIPBOARDEVENT pEvent, uint16_t uID)
    95102{
     
    108115}
    109116
     117/**
     118 * Destroys an event.
     119 *
     120 * @param   pEvent              Event to destroy.
     121 */
    110122void SharedClipboardEventDestroy(PSHAREDCLIPBOARDEVENT pEvent)
    111123{
     
    126138}
    127139
     140/**
     141 * Creates a new event source.
     142 *
     143 * @returns VBox status code.
     144 * @param   pSource             Event source to create.
     145 * @param   uID                 ID to use for event source.
     146 */
    128147int SharedClipboardEventSourceCreate(PSHAREDCLIPBOARDEVENTSOURCE pSource, uint16_t uID)
    129148{
     
    143162}
    144163
     164/**
     165 * Destroys an event source.
     166 *
     167 * @param   pSource             Event source to destroy.
     168 */
    145169void SharedClipboardEventSourceDestroy(PSHAREDCLIPBOARDEVENTSOURCE pSource)
    146170{
Note: See TracChangeset for help on using the changeset viewer.

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