VirtualBox

Changeset 80847 in vbox for trunk/include/VBox/HostServices


Ignore:
Timestamp:
Sep 17, 2019 9:38:16 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
133417
Message:

Shared Clipboard/URI: More renaming to make code base more uniform.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/HostServices/VBoxClipboardSvc.h

    r80845 r80847  
    6666 */
    6767/** Older saved states (VBox < 6.1). Includes protocol v0 state. */
    68 #define VBOX_SHARED_CLIPBOARD_SSM_VER_0          UINT32_C(0x80000002)
     68#define VBOX_SHCL_SSM_VER_0          UINT32_C(0x80000002)
    6969/** Protocol v1 is being used. */
    70 #define VBOX_SHARED_CLIPBOARD_SSM_VER_1          UINT32_C(0x80000003)
     70#define VBOX_SHCL_SSM_VER_1          UINT32_C(0x80000003)
    7171
    7272/*
    7373 * The mode of operations.
    7474 */
    75 #define VBOX_SHARED_CLIPBOARD_MODE_OFF           0
    76 #define VBOX_SHARED_CLIPBOARD_MODE_HOST_TO_GUEST 1
    77 #define VBOX_SHARED_CLIPBOARD_MODE_GUEST_TO_HOST 2
    78 #define VBOX_SHARED_CLIPBOARD_MODE_BIDIRECTIONAL 3
     75#define VBOX_SHCL_MODE_OFF           0
     76#define VBOX_SHCL_MODE_HOST_TO_GUEST 1
     77#define VBOX_SHCL_MODE_GUEST_TO_HOST 2
     78#define VBOX_SHCL_MODE_BIDIRECTIONAL 3
    7979
    8080/*
     
    8282 */
    8383/** Sets the current Shared Clipboard operation mode. */
    84 #define VBOX_SHARED_CLIPBOARD_HOST_FN_SET_MODE           1
     84#define VBOX_SHCL_HOST_FN_SET_MODE           1
    8585/** Run headless on the host, i.e. do not touch the host clipboard. */
    86 #define VBOX_SHARED_CLIPBOARD_HOST_FN_SET_HEADLESS       2
     86#define VBOX_SHCL_HOST_FN_SET_HEADLESS       2
    8787/** Reports cancellation of the current operation to the guest. */
    88 #define VBOX_SHARED_CLIPBOARD_HOST_FN_CANCEL             3
     88#define VBOX_SHCL_HOST_FN_CANCEL             3
    8989/** Reports an error to the guest. */
    90 #define VBOX_SHARED_CLIPBOARD_HOST_FN_ERROR              4
     90#define VBOX_SHCL_HOST_FN_ERROR              4
    9191/** Reports that a new clipboard area has been registered. */
    92 #define VBOX_SHARED_CLIPBOARD_HOST_FN_AREA_REGISTER      5
     92#define VBOX_SHCL_HOST_FN_AREA_REGISTER      5
    9393/** Reports that a clipboard area has been unregistered. */
    94 #define VBOX_SHARED_CLIPBOARD_HOST_FN_AREA_UNREGISTER    6
     94#define VBOX_SHCL_HOST_FN_AREA_UNREGISTER    6
    9595/** Reports that a client (host / guest) has attached to a clipboard area. */
    96 #define VBOX_SHARED_CLIPBOARD_HOST_FN_AREA_ATTACH        7
     96#define VBOX_SHCL_HOST_FN_AREA_ATTACH        7
    9797/** Reports that a client (host / guest) has detached from a clipboard area. */
    98 #define VBOX_SHARED_CLIPBOARD_HOST_FN_AREA_DETACH        8
     98#define VBOX_SHCL_HOST_FN_AREA_DETACH        8
    9999
    100100/**
     
    102102 */
    103103/** Asks the client to quit / terminate. */
    104 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_QUIT                         1
     104#define VBOX_SHCL_HOST_MSG_QUIT                         1
    105105/** Reads (simple) data from the guest. */
    106 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_READ_DATA                    2
     106#define VBOX_SHCL_HOST_MSG_READ_DATA                    2
    107107/** Reports available clipboard format from host to the guest.
    108  *  Formerly known as VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS. */
    109 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_FORMATS_REPORT               3
     108 *  Formerly known as VBOX_SHCL_HOST_MSG_REPORT_FORMATS. */
     109#define VBOX_SHCL_HOST_MSG_FORMATS_REPORT               3
    110110
    111111/** Sends a transfer status to the guest side. */
    112 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_TRANSFER_STATUS          50
     112#define VBOX_SHCL_HOST_MSG_URI_TRANSFER_STATUS          50
    113113/** Reads the root list header from the guest. */
    114 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_ROOT_LIST_HDR_READ       51
     114#define VBOX_SHCL_HOST_MSG_URI_ROOT_LIST_HDR_READ       51
    115115/** Writes the root list header to the guest. */
    116 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_ROOT_LIST_HDR_WRITE      52
     116#define VBOX_SHCL_HOST_MSG_URI_ROOT_LIST_HDR_WRITE      52
    117117/** Reads a root list entry from the guest. */
    118 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_ROOT_LIST_ENTRY_READ     53
     118#define VBOX_SHCL_HOST_MSG_URI_ROOT_LIST_ENTRY_READ     53
    119119/** Writes a root list entry to the guest. */
    120 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_ROOT_LIST_ENTRY_WRITE    54
     120#define VBOX_SHCL_HOST_MSG_URI_ROOT_LIST_ENTRY_WRITE    54
    121121/** Open an URI list on the guest side. */
    122 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_LIST_OPEN                55
     122#define VBOX_SHCL_HOST_MSG_URI_LIST_OPEN                55
    123123/** Closes a formerly opened URI list on the guest side. */
    124 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_LIST_CLOSE               56
     124#define VBOX_SHCL_HOST_MSG_URI_LIST_CLOSE               56
    125125/** Reads a list header from the guest. */
    126 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_LIST_HDR_READ            57
     126#define VBOX_SHCL_HOST_MSG_URI_LIST_HDR_READ            57
    127127/** Writes a list header to the guest. */
    128 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_LIST_HDR_WRITE           58
     128#define VBOX_SHCL_HOST_MSG_URI_LIST_HDR_WRITE           58
    129129/** Reads a list entry from the guest. */
    130 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_LIST_ENTRY_READ          59
     130#define VBOX_SHCL_HOST_MSG_URI_LIST_ENTRY_READ          59
    131131/** Writes a list entry to the guest. */
    132 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_LIST_ENTRY_WRITE         60
     132#define VBOX_SHCL_HOST_MSG_URI_LIST_ENTRY_WRITE         60
    133133/** Open an URI object on the guest side. */
    134 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_OBJ_OPEN                 61
     134#define VBOX_SHCL_HOST_MSG_URI_OBJ_OPEN                 61
    135135/** Closes a formerly opened URI object on the guest side. */
    136 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_OBJ_CLOSE                62
     136#define VBOX_SHCL_HOST_MSG_URI_OBJ_CLOSE                62
    137137/** Reads from an object on the guest side. */
    138 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_OBJ_READ                 63
     138#define VBOX_SHCL_HOST_MSG_URI_OBJ_READ                 63
    139139/** Writes to an object on the guest side. */
    140 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_OBJ_WRITE                64
     140#define VBOX_SHCL_HOST_MSG_URI_OBJ_WRITE                64
    141141/** Indicates that the host has canceled a transfer. */
    142 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_CANCEL                   65
     142#define VBOX_SHCL_HOST_MSG_URI_CANCEL                   65
    143143/** Indicates that the an unrecoverable error on the host occurred . */
    144 #define VBOX_SHARED_CLIPBOARD_HOST_MSG_URI_ERROR                    66
     144#define VBOX_SHCL_HOST_MSG_URI_ERROR                    66
    145145
    146146/*
    147147 * The service functions which are called by guest.
    148148 */
    149 /** Calls the host and waits (blocking) for an host event VBOX_SHARED_CLIPBOARD_HOST_MSG_*.
     149/** Calls the host and waits (blocking) for an host event VBOX_SHCL_HOST_MSG_*.
    150150 *  Note: This is the old message which still is being used for the non-URI Shared Clipboard transfers,
    151151 *        to not break compatibility with older Guest Additions / VBox versions. */
    152 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_GET_HOST_MSG_OLD       1
     152#define VBOX_SHCL_GUEST_FN_GET_HOST_MSG_OLD       1
    153153/** Sends a list of available formats to the host.
    154  *  Formely known as VBOX_SHARED_CLIPBOARD_GUEST_FN_REPORT_FORMATS. */
    155 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_FORMATS_REPORT         2
     154 *  Formely known as VBOX_SHCL_GUEST_FN_REPORT_FORMATS. */
     155#define VBOX_SHCL_GUEST_FN_FORMATS_REPORT         2
    156156/** Reads data in specified format from the host. */
    157 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_DATA_READ              3
     157#define VBOX_SHCL_GUEST_FN_DATA_READ              3
    158158/** Writes data in requested format to the host. */
    159 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_DATA_WRITE             4
     159#define VBOX_SHCL_GUEST_FN_DATA_WRITE             4
    160160
    161161/** Does the actual protocol handshake. If this message is not
     
    164164 *
    165165 *  New since protocol v1. */
    166 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_CONNECT                5
     166#define VBOX_SHCL_GUEST_FN_CONNECT                5
    167167/** Peeks at the next message, returning immediately.
    168168 *  New since protocol v1. */
    169 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_MSG_PEEK_NOWAIT        6
     169#define VBOX_SHCL_GUEST_FN_MSG_PEEK_NOWAIT        6
    170170/** Peeks at the next message, waiting for one to arrive.
    171171 *  New since protocol v1. */
    172 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_MSG_PEEK_WAIT          7
     172#define VBOX_SHCL_GUEST_FN_MSG_PEEK_WAIT          7
    173173/** Gets the next message, returning immediately.
    174174 *  New since protocol v1. */
    175 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_MSG_GET                8
     175#define VBOX_SHCL_GUEST_FN_MSG_GET                8
    176176/** Sends a transfer status to the host.
    177177 *  New since protocol v1. */
    178 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_STATUS                 9
     178#define VBOX_SHCL_GUEST_FN_STATUS                 9
    179179/** Replies to a function from the host.
    180180 *  New since protocol v1. */
    181 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_REPLY                  10
     181#define VBOX_SHCL_GUEST_FN_REPLY                  10
    182182/** Reports the available root entries of a transfer.
    183183 *  New since protocol v1. */
    184 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_ROOT_LIST_HDR_READ     11
     184#define VBOX_SHCL_GUEST_FN_ROOT_LIST_HDR_READ     11
    185185/** Reports the available root entries of a transfer.
    186186 *  New since protocol v1. */
    187 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_ROOT_LIST_HDR_WRITE    12
     187#define VBOX_SHCL_GUEST_FN_ROOT_LIST_HDR_WRITE    12
    188188/** Reports the available root entries of a transfer.
    189189 *  New since protocol v1. */
    190 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_ROOT_LIST_ENTRY_READ   13
     190#define VBOX_SHCL_GUEST_FN_ROOT_LIST_ENTRY_READ   13
    191191/** Reports the available root entries of a transfer.
    192192 *  New since protocol v1. */
    193 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_ROOT_LIST_ENTRY_WRITE  14
     193#define VBOX_SHCL_GUEST_FN_ROOT_LIST_ENTRY_WRITE  14
    194194/** Opens / gets a list handle from the host.
    195195 *  New since protocol v1. */
    196 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_LIST_OPEN              15
     196#define VBOX_SHCL_GUEST_FN_LIST_OPEN              15
    197197/** Closes a list handle from the host.
    198198 *  New since protocol v1. */
    199 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_LIST_CLOSE             16
     199#define VBOX_SHCL_GUEST_FN_LIST_CLOSE             16
    200200/** Reads a list header from the host.
    201201 *  New since protocol v1. */
    202 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_LIST_HDR_READ          17
     202#define VBOX_SHCL_GUEST_FN_LIST_HDR_READ          17
    203203/** Writes a list header to the host.
    204204 *  New since protocol v1. */
    205 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_LIST_HDR_WRITE         18
     205#define VBOX_SHCL_GUEST_FN_LIST_HDR_WRITE         18
    206206/** New since protocol v1. */
    207 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_LIST_ENTRY_READ        19
     207#define VBOX_SHCL_GUEST_FN_LIST_ENTRY_READ        19
    208208/** New since protocol v1. */
    209 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_LIST_ENTRY_WRITE       20
     209#define VBOX_SHCL_GUEST_FN_LIST_ENTRY_WRITE       20
    210210/** New since protocol v1. */
    211 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_OBJ_OPEN               21
     211#define VBOX_SHCL_GUEST_FN_OBJ_OPEN               21
    212212/** New since protocol v1. */
    213 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_OBJ_CLOSE              22
     213#define VBOX_SHCL_GUEST_FN_OBJ_CLOSE              22
    214214/** New since protocol v1. */
    215 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_OBJ_READ               23
     215#define VBOX_SHCL_GUEST_FN_OBJ_READ               23
    216216/** New since protocol v1. */
    217 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_OBJ_WRITE              24
     217#define VBOX_SHCL_GUEST_FN_OBJ_WRITE              24
    218218/** Reports cancellation of the current operation to the host.
    219219 *  New since protocol v1. */
    220 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_CANCEL                 25
     220#define VBOX_SHCL_GUEST_FN_CANCEL                 25
    221221/** Reports an error to the host.
    222222 *  New since protocol v1. */
    223 #define VBOX_SHARED_CLIPBOARD_GUEST_FN_ERROR                  26
     223#define VBOX_SHCL_GUEST_FN_ERROR                  26
    224224
    225225/** The maximum default chunk size for a single data transfer. */
    226 #define VBOX_SHARED_CLIPBOARD_MAX_CHUNK_SIZE                  _64K
     226#define VBOX_SHCL_MAX_CHUNK_SIZE                  _64K
    227227
    228228/*
     
    235235 * Kept for maintaining compatibility with older Guest Additions.
    236236 */
    237 typedef struct _VBoxClipboardGetHostMsgOld
     237typedef struct _VBoxShClGetHostMsgOld
    238238{
    239239    VBGLIOCHGCMCALL hdr;
     
    241241    /** uint32_t, out: Host message type. */
    242242    HGCMFunctionParameter msg;
    243     /** uint32_t, out: VBOX_SHARED_CLIPBOARD_FMT_*, depends on the 'msg'.
     243    /** uint32_t, out: VBOX_SHCL_FMT_*, depends on the 'msg'.
    244244     *  r=andy This actual can have *different* meanings, depending on the host message type. */
    245245    HGCMFunctionParameter formats; /* OUT uint32_t */
    246 } VBoxClipboardGetHostMsgOld;
    247 
    248 #define VBOX_SHARED_CLIPBOARD_CPARMS_GET_HOST_MSG_OLD 2
     246} VBoxShClGetHostMsgOld;
     247
     248#define VBOX_SHCL_CPARMS_GET_HOST_MSG_OLD 2
    249249
    250250/**
     
    252252 * and the guest. Not available on older (VBox <= 6.0) hosts.
    253253 */
    254 typedef struct _VBoxClipboardConnect
     254typedef struct _VBoxShClConnect
    255255{
    256256    VBGLIOCHGCMCALL hdr;
     
    266266    /** uint32_t, in/out: Checksum type used for data transfer. Currently unused. */
    267267    HGCMFunctionParameter enmChecksumType;
    268 } VBoxClipboardConnect;
    269 
    270 #define VBOX_SHARED_CLIPBOARD_CPARMS_CONNECT 5
    271 
    272 typedef struct _VBoxClipboardFormatsMsg
     268} VBoxShClConnect;
     269
     270#define VBOX_SHCL_CPARMS_CONNECT 5
     271
     272typedef struct _VBoxShClFormatsMsg
    273273{
    274274    VBGLIOCHGCMCALL hdr;
     
    276276    /** uint32_t, in: Context ID. */
    277277    HGCMFunctionParameter uContext;
    278     /** uint32_t, out:  VBOX_SHARED_CLIPBOARD_FMT_*. */
     278    /** uint32_t, out:  VBOX_SHCL_FMT_*. */
    279279    HGCMFunctionParameter uFormats;
    280280    /** uint32_t, in: Format flags. */
    281281    HGCMFunctionParameter fFlags;
    282 } VBoxClipboardFormatsMsg;
    283 
    284 typedef struct _VBoxClipboardReadDataReqMsg
     282} VBoxShClFormatsMsg;
     283
     284typedef struct _VBoxShClReadDataReqMsg
    285285{
    286286    VBGLIOCHGCMCALL hdr;
     
    292292    /** uint32_t, out: Maximum size (in bytes) to read. */
    293293    HGCMFunctionParameter cbSize;
    294 } VBoxClipboardReadDataReqMsg;
    295 
    296 #define VBOX_SHARED_CLIPBOARD_CPARMS_READ_DATA_REQ 2
    297 
    298 typedef struct _VBoxClipboardReadDataMsg
     294} VBoxShClReadDataReqMsg;
     295
     296#define VBOX_SHCL_CPARMS_READ_DATA_REQ 2
     297
     298typedef struct _VBoxShClReadDataMsg
    299299{
    300300    VBGLIOCHGCMCALL hdr;
     
    309309    HGCMFunctionParameter size;   /* OUT uint32_t */
    310310
    311 } VBoxClipboardReadDataMsg;
    312 
    313 #define VBOX_SHARED_CLIPBOARD_CPARMS_READ_DATA 3
    314 
    315 typedef struct _VBoxClipboardWriteDataMsg
     311} VBoxShClReadDataMsg;
     312
     313#define VBOX_SHCL_CPARMS_READ_DATA 3
     314
     315typedef struct _VBoxShClWriteDataMsg
    316316{
    317317    VBGLIOCHGCMCALL hdr;
     
    321321        struct
    322322        {
    323             /** Returned format as requested in the VBOX_SHARED_CLIPBOARD_HOST_MSG_READ_DATA message. */
     323            /** Returned format as requested in the VBOX_SHCL_HOST_MSG_READ_DATA message. */
    324324            HGCMFunctionParameter format; /* IN uint32_t */
    325325            /** Data.  */
     
    338338        } v1;
    339339    } u;
    340 } VBoxClipboardWriteDataMsg;
    341 
    342 #define VBOX_SHARED_CLIPBOARD_CPARMS_WRITE_DATA 4
     340} VBoxShClWriteDataMsg;
     341
     342#define VBOX_SHCL_CPARMS_WRITE_DATA 4
    343343
    344344/**
    345345 * Reports a transfer status.
    346346 */
    347 typedef struct _VBoxClipboardTransferStatusMsg
     347typedef struct _VBoxShClTransferStatusMsg
    348348{
    349349    VBGLIOCHGCMCALL hdr;
     
    359359    /** uint32_t, out: Reporting flags. Currently unused and must be 0. */
    360360    HGCMFunctionParameter fFlags;
    361 } VBoxClipboardTransferStatusMsg;
    362 
    363 #define VBOX_SHARED_CLIPBOARD_CPARMS_TRANSFER_STATUS 5
     361} VBoxShClTransferStatusMsg;
     362
     363#define VBOX_SHCL_CPARMS_TRANSFER_STATUS 5
    364364
    365365/**
     
    368368 * flag.
    369369 *
    370  * Used by: VBOX_SHARED_CLIPBOARD_GUEST_FN_GET_HOST_MSG
    371  *
    372  */
    373 typedef struct _VBoxClipboardGetHostMsg
     370 * Used by: VBOX_SHCL_GUEST_FN_GET_HOST_MSG
     371 *
     372 */
     373typedef struct _VBoxShClGetHostMsg
    374374{
    375375    VBGLIOCHGCMCALL hdr;
     
    381381    /** uint32_t, in: Whether or not to block (wait) for a  new message to arrive. */
    382382    HGCMFunctionParameter fBlock;
    383 } VBoxClipboardPeekMsg;
    384 
    385 #define VBOX_SHARED_CLIPBOARD_CPARMS_GET_HOST_MSG 3
     383} VBoxShClPeekMsg;
     384
     385#define VBOX_SHCL_CPARMS_GET_HOST_MSG 3
    386386
    387387/** @todo might be necessary for future. */
     
    400400 * Status messag for lists and objects.
    401401 */
    402 typedef struct _VBoxClipboardStatusMsg
     402typedef struct _VBoxShClStatusMsg
    403403{
    404404    VBGLIOCHGCMCALL hdr;
     
    412412    /** pointer, in: Optional payload of this status, based on the status type. */
    413413    HGCMFunctionParameter pvPayload;
    414 } VBoxClipboardStatusMsg;
    415 
    416 #define VBOX_SHARED_CLIPBOARD_CPARMS_STATUS 4
     414} VBoxShClStatusMsg;
     415
     416#define VBOX_SHCL_CPARMS_STATUS 4
    417417
    418418/** Invalid message type, do not use. */
     
    432432 * Generic reply message.
    433433 */
    434 typedef struct _VBoxClipboardReplyMsg
     434typedef struct _VBoxShClReplyMsg
    435435{
    436436    VBGLIOCHGCMCALL hdr;
     
    465465        } ObjClose;
    466466    } u;
    467 } VBoxClipboardReplyMsg;
     467} VBoxShClReplyMsg;
    468468
    469469/** Minimum parameters (HGCM function parameters minus the union) a reply message must have. */
    470 #define VBOX_SHARED_CLIPBOARD_CPARMS_REPLY_MIN 5
    471 
    472 typedef struct _VBoxClipboardRootListParms
     470#define VBOX_SHCL_CPARMS_REPLY_MIN 5
     471
     472typedef struct _VBoxShClRootListParms
    473473{
    474474    /** uint32_t, in: Context ID. s*/
     
    476476    /** uint32_t, in: Roots listing flags; unused at the moment. */
    477477    HGCMFunctionParameter fRoots;
    478 } VBoxClipboardRootListParms;
     478} VBoxShClRootListParms;
    479479
    480480/**
    481481 * Requests to read the root list.
    482482 */
    483 typedef struct _VBoxClipboardRootListReadReqMsg
    484 {
    485     VBGLIOCHGCMCALL hdr;
    486 
    487     VBoxClipboardRootListParms ReqParms;
    488 } VBoxClipboardRootListReadReqMsg;
    489 
    490 #define VBOX_SHARED_CLIPBOARD_CPARMS_ROOT_LIST_HDR_READ 2
     483typedef struct _VBoxShClRootListReadReqMsg
     484{
     485    VBGLIOCHGCMCALL hdr;
     486
     487    VBoxShClRootListParms ReqParms;
     488} VBoxShClRootListReadReqMsg;
     489
     490#define VBOX_SHCL_CPARMS_ROOT_LIST_HDR_READ 2
    491491
    492492/**
    493493 * Reads / Writes a root list header.
    494494 */
    495 typedef struct _VBoxClipboardRootListHdrMsg
    496 {
    497     VBGLIOCHGCMCALL hdr;
    498 
    499     VBoxClipboardRootListParms ReqParms;
     495typedef struct _VBoxShClRootListHdrMsg
     496{
     497    VBGLIOCHGCMCALL hdr;
     498
     499    VBoxShClRootListParms ReqParms;
    500500    /** uint64_t, in/out: Number of total root list entries. */
    501501    HGCMFunctionParameter      cRoots;
    502 } VBoxClipboardRootListHdrMsg;
    503 
    504 #define VBOX_SHARED_CLIPBOARD_CPARMS_ROOT_LIST_HDR 2
    505 
    506 typedef struct _VBoxClipboardRootListEntryParms
     502} VBoxShClRootListHdrMsg;
     503
     504#define VBOX_SHCL_CPARMS_ROOT_LIST_HDR 2
     505
     506typedef struct _VBoxShClRootListEntryParms
    507507{
    508508    /** uint32_t, in: Context ID. */
     
    512512    /** uint32_t, in: Index of root list entry to get (zero-based). */
    513513    HGCMFunctionParameter uIndex;
    514 } VBoxClipboardRootListEntryParms;
     514} VBoxShClRootListEntryParms;
    515515
    516516/**
    517517 * Request to read a list root entry.
    518518 */
    519 typedef struct _VBoxClipboardRootListEntryReadReqMsg
     519typedef struct _VBoxShClRootListEntryReadReqMsg
    520520{
    521521    VBGLIOCHGCMCALL hdr;
    522522
    523523    /** in: Request parameters. */
    524     VBoxClipboardRootListEntryParms Parms;
    525 } VBoxClipboardRootListEntryReadReqMsg;
    526 
    527 #define VBOX_SHARED_CLIPBOARD_CPARMS_ROOT_LIST_ENTRY_READ_REQ 3
     524    VBoxShClRootListEntryParms Parms;
     525} VBoxShClRootListEntryReadReqMsg;
     526
     527#define VBOX_SHCL_CPARMS_ROOT_LIST_ENTRY_READ_REQ 3
    528528
    529529/**
    530530 * Reads / Writes a root list entry.
    531531 */
    532 typedef struct _VBoxClipboardRootListEntryMsg
     532typedef struct _VBoxShClRootListEntryMsg
    533533{
    534534    VBGLIOCHGCMCALL hdr;
    535535
    536536    /** in/out: Request parameters. */
    537     VBoxClipboardRootListEntryParms Parms;
     537    VBoxShClRootListEntryParms Parms;
    538538    /** pointer, in/out: Entry name. */
    539539    HGCMFunctionParameter           szName;
     
    543543     *  Do not forget to set the SHCLFSOBJINFO::Attr::enmAdditional for Get operation as well.  */
    544544    HGCMFunctionParameter           pvInfo;
    545 } VBoxClipboardRootListEntryMsg;
    546 
    547 #define VBOX_SHARED_CLIPBOARD_CPARMS_ROOT_LIST_ENTRY 6
     545} VBoxShClRootListEntryMsg;
     546
     547#define VBOX_SHCL_CPARMS_ROOT_LIST_ENTRY 6
    548548
    549549/**
    550550 * Opens a list.
    551551 */
    552 typedef struct _VBoxClipboardListOpenMsg
     552typedef struct _VBoxShClListOpenMsg
    553553{
    554554    VBGLIOCHGCMCALL hdr;
     
    568568    /** uint64_t, out: List handle. */
    569569    HGCMFunctionParameter uHandle;
    570 } VBoxClipboardListOpenMsg;
    571 
    572 #define VBOX_SHARED_CLIPBOARD_CPARMS_LIST_OPEN 7
     570} VBoxShClListOpenMsg;
     571
     572#define VBOX_SHCL_CPARMS_LIST_OPEN 7
    573573
    574574/**
    575575 * Closes a list.
    576576 */
    577 typedef struct _VBoxClipboardListCloseMsg
     577typedef struct _VBoxShClListCloseMsg
    578578{
    579579    VBGLIOCHGCMCALL hdr;
     
    583583    /** uint64_t, in: List handle. */
    584584    HGCMFunctionParameter uHandle;
    585 } VBoxClipboardListCloseMsg;
    586 
    587 #define VBOX_SHARED_CLIPBOARD_CPARMS_LIST_CLOSE 2
    588 
    589 typedef struct _VBoxClipboardListHdrReqParms
     585} VBoxShClListCloseMsg;
     586
     587#define VBOX_SHCL_CPARMS_LIST_CLOSE 2
     588
     589typedef struct _VBoxShClListHdrReqParms
    590590{
    591591    /** uint32_t, in: Context ID. */
     
    595595    /** uint32_t, in: Flags of type VBOX_SHCL_LISTHDR_FLAG_XXX. */
    596596    HGCMFunctionParameter fFlags;
    597 } VBoxClipboardListHdrReqParms;
     597} VBoxShClListHdrReqParms;
    598598
    599599/**
    600600 * Request to read a list header.
    601601 */
    602 typedef struct _VBoxClipboardListHdrReadReqMsg
    603 {
    604     VBGLIOCHGCMCALL hdr;
    605 
    606     VBoxClipboardListHdrReqParms ReqParms;
    607 } VBoxClipboardListHdrReadReqMsg;
    608 
    609 #define VBOX_SHARED_CLIPBOARD_CPARMS_LIST_HDR_READ_REQ 3
     602typedef struct _VBoxShClListHdrReadReqMsg
     603{
     604    VBGLIOCHGCMCALL hdr;
     605
     606    VBoxShClListHdrReqParms ReqParms;
     607} VBoxShClListHdrReadReqMsg;
     608
     609#define VBOX_SHCL_CPARMS_LIST_HDR_READ_REQ 3
    610610
    611611/**
    612612 * Reads / Writes a list header.
    613613 */
    614 typedef struct _VBoxClipboardListHdrMsg
    615 {
    616     VBGLIOCHGCMCALL hdr;
    617 
    618     VBoxClipboardListHdrReqParms ReqParms;
     614typedef struct _VBoxShClListHdrMsg
     615{
     616    VBGLIOCHGCMCALL hdr;
     617
     618    VBoxShClListHdrReqParms ReqParms;
    619619    /** uint32_t, in/out: Feature flags (see VBOX_SHCL_FEATURE_FLAG_XXX). */
    620620    HGCMFunctionParameter        fFeatures;
     
    623623    /** uint64_t, in/out:  Number of total bytes to transfer. */
    624624    HGCMFunctionParameter        cbTotalSize;
    625 } VBoxClipboardListHdrMsg;
    626 
    627 #define VBOX_SHARED_CLIPBOARD_CPARMS_LIST_HDR 6
    628 
    629 typedef struct _VBoxClipboardListEntryReqParms
     625} VBoxShClListHdrMsg;
     626
     627#define VBOX_SHCL_CPARMS_LIST_HDR 6
     628
     629typedef struct _VBoxShClListEntryReqParms
    630630{
    631631    /** uint32_t, in: Context ID. */
     
    635635    /** uint32_t, in: VBOX_SHCL_INFO_FLAG_XXX. */
    636636    HGCMFunctionParameter fInfo;
    637 } VBoxClipboardListEntryReqParms;
     637} VBoxShClListEntryReqParms;
    638638
    639639/**
    640640 * Request to read a list entry.
    641641 */
    642 typedef struct _VBoxClipboardListEntryReadReqMsg
    643 {
    644     VBGLIOCHGCMCALL hdr;
    645 
    646     VBoxClipboardListEntryReqParms ReqParms;
    647 } VBoxClipboardListEntryReadReqMsg;
    648 
    649 #define VBOX_SHARED_CLIPBOARD_CPARMS_LIST_ENTRY_READ 3
     642typedef struct _VBoxShClListEntryReadReqMsg
     643{
     644    VBGLIOCHGCMCALL hdr;
     645
     646    VBoxShClListEntryReqParms ReqParms;
     647} VBoxShClListEntryReadReqMsg;
     648
     649#define VBOX_SHCL_CPARMS_LIST_ENTRY_READ 3
    650650
    651651/**
    652652 * Reads / Writes a list entry.
    653653 */
    654 typedef struct _VBoxClipboardListEntryMsg
     654typedef struct _VBoxShClListEntryMsg
    655655{
    656656    VBGLIOCHGCMCALL hdr;
    657657
    658658    /** in/out: Request parameters. */
    659     VBoxClipboardListEntryReqParms ReqParms;
     659    VBoxShClListEntryReqParms ReqParms;
    660660    /** pointer, in/out: Entry name. */
    661661    HGCMFunctionParameter          szName;
     
    665665     *  Do not forget to set the SHCLFSOBJINFO::Attr::enmAdditional for Get operation as well.  */
    666666    HGCMFunctionParameter          pvInfo;
    667 } VBoxClipboardListEntryMsg;
    668 
    669 #define VBOX_SHARED_CLIPBOARD_CPARMS_LIST_ENTRY 6
    670 
    671 typedef struct _VBoxClipboardObjOpenMsg
     667} VBoxShClListEntryMsg;
     668
     669#define VBOX_SHCL_CPARMS_LIST_ENTRY 6
     670
     671typedef struct _VBoxShClObjOpenMsg
    672672{
    673673    VBGLIOCHGCMCALL hdr;
     
    683683    /** uint32_t in/out: Open / Create flags of type SHCL_OBJ_CF_. */
    684684    HGCMFunctionParameter fCreate;
    685 } VBoxClipboardObjOpenMsg;
    686 
    687 #define VBOX_SHARED_CLIPBOARD_CPARMS_OBJ_OPEN 5
    688 
    689 typedef struct _VBoxClipboardObjCloseMsg
     685} VBoxShClObjOpenMsg;
     686
     687#define VBOX_SHCL_CPARMS_OBJ_OPEN 5
     688
     689typedef struct _VBoxShClObjCloseMsg
    690690{
    691691    VBGLIOCHGCMCALL hdr;
     
    695695    /** uint64_t, in: SHCLOBJHANDLE of object to close. */
    696696    HGCMFunctionParameter uHandle;
    697 } VBoxClipboardObjCloseMsg;
    698 
    699 #define VBOX_SHARED_CLIPBOARD_CPARMS_OBJ_CLOSE 2
    700 
    701 typedef struct _VBoxClipboardObjReadReqParms
     697} VBoxShClObjCloseMsg;
     698
     699#define VBOX_SHCL_CPARMS_OBJ_CLOSE 2
     700
     701typedef struct _VBoxShClObjReadReqParms
    702702{
    703703    /** uint32_t, in: Context ID. */
     
    709709    /** uint32_t, in: Read flags. Currently unused and must be 0. */
    710710    HGCMFunctionParameter fRead;
    711 } VBoxClipboardObjReadReqParms;
    712 
    713 typedef struct _VBoxClipboardObjReadReqMsg
    714 {
    715     VBGLIOCHGCMCALL hdr;
    716 
    717     VBoxClipboardObjReadReqParms ReqParms;
    718 } VBoxClipboardObjReadReqMsg;
    719 
    720 #define VBOX_SHARED_CLIPBOARD_CPARMS_OBJ_READ_REQ 4
     711} VBoxShClObjReadReqParms;
     712
     713typedef struct _VBoxShClObjReadReqMsg
     714{
     715    VBGLIOCHGCMCALL hdr;
     716
     717    VBoxShClObjReadReqParms ReqParms;
     718} VBoxShClObjReadReqMsg;
     719
     720#define VBOX_SHCL_CPARMS_OBJ_READ_REQ 4
    721721
    722722/**
     
    724724 *
    725725 * Used by:
    726  * VBOX_SHARED_CLIPBOARD_FN_OBJ_READ
    727  * VBOX_SHARED_CLIPBOARD_FN_OBJ_WRITE
    728  */
    729 typedef struct _VBoxClipboardObjReadWriteMsg
     726 * VBOX_SHCL_FN_OBJ_READ
     727 * VBOX_SHCL_FN_OBJ_WRITE
     728 */
     729typedef struct _VBoxShClObjReadWriteMsg
    730730{
    731731    VBGLIOCHGCMCALL hdr;
     
    744744     *  type in the data header. Optional. */
    745745    HGCMFunctionParameter pvChecksum;
    746 } VBoxClipboardObjReadWriteMsg;
    747 
    748 #define VBOX_SHARED_CLIPBOARD_CPARMS_OBJ_READ  6
    749 #define VBOX_SHARED_CLIPBOARD_CPARMS_OBJ_WRITE 6
     746} VBoxShClObjReadWriteMsg;
     747
     748#define VBOX_SHCL_CPARMS_OBJ_READ  6
     749#define VBOX_SHCL_CPARMS_OBJ_WRITE 6
    750750
    751751/**
     
    753753 *
    754754 * Used by:
    755  * VBOX_SHARED_CLIPBOARD_FN_WRITE_ERROR
    756  */
    757 typedef struct _VBoxClipboardErrorMsg
     755 * VBOX_SHCL_FN_WRITE_ERROR
     756 */
     757typedef struct _VBoxShClErrorMsg
    758758{
    759759    VBGLIOCHGCMCALL hdr;
     
    763763    /** uint32_t, in: The error code (IPRT-style). */
    764764    HGCMFunctionParameter rc;
    765 } VBoxClipboardWriteErrorMsg;
    766 
    767 #define VBOX_SHARED_CLIPBOARD_CPARMS_ERROR 2
     765} VBoxShClWriteErrorMsg;
     766
     767#define VBOX_SHCL_CPARMS_ERROR 2
    768768
    769769#pragma pack()
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