Changeset 2522 in vbox for trunk/include
- Timestamp:
- May 7, 2007 12:02:12 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vrdpapi.h
r2436 r2522 555 555 * - (0) guest announces available clipboard formats; 556 556 * - (1) guest requests clipboard data; 557 * - (2) host responds to the client's request for clipboard data.557 * - (2) guest responds to the client's request for clipboard data. 558 558 * 559 559 * @param hserver The VRDP server handle. 560 560 * @param u32Function The cause of the call. 561 561 * @param u32Format Bitmask of announced formats or the format of data. 562 * @param pvData Points to data from the host, as reply to (2). 563 * @param cbData Size of the data in bytes. 562 * @param pvData Points to: (1) buffer to be filled with clients data; 563 * (2) data from the host. 564 * @param cbData Size of 'pvData' buffer in bytes. 565 * @param pcbActualRead Size of the copied data in bytes. 564 566 * 565 567 */ … … 567 569 uint32_t u32Function, 568 570 uint32_t u32Format, 569 const void *pvData, 570 uint32_t cbData); 571 void *pvData, 572 uint32_t cbData, 573 uint32_t *pcbActualRead); 571 574 572 575 #ifdef VRDP_MC … … 610 613 * Called by the server when (VRDP_CLIPBOARD_FUNCTION_*): 611 614 * - (0) client announces available clipboard formats; 612 * - (1) client requests clipboard data; 613 * - (2) client responds to the guest's request for clipboard data. 614 * 615 * - client announces available clipboard formats; 616 * - clipboard data is received from the client. 615 * - (1) client requests clipboard data. 617 616 * 618 617 * @param pvCallback Callback specific value returned by VRDPSERVERCALLBACK::pfnInterceptClipboard. 619 618 * @param u32ClientId Identifies the RDP client that sent the reply. 620 * @param u32Function The cause if the callback.619 * @param u32Function The cause of the callback. 621 620 * @param u32Format Bitmask of reported formats or the format of received data. 622 * @param pvData Points to data received from the client.623 * @param cbData Size of the data in bytes.621 * @param pvData Reserved. 622 * @param cbData Reserved. 624 623 * 625 624 * @return VBox error code.
Note:
See TracChangeset
for help on using the changeset viewer.