Changeset 36423 in vbox for trunk/include/VBox
- Timestamp:
- Mar 25, 2011 11:14:52 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70785
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/RemoteDesktop/VRDE.h
r35985 r36423 428 428 /** Revision, integer part. */ 429 429 uint16_t bcdRev; 430 /** Manufacturer string. */430 /** Offset of the UTF8 manufacturer string relative to the structure start. */ 431 431 uint16_t oManufacturer; 432 /** Product string. */432 /** Offset of the UTF8 product string relative to the structure start. */ 433 433 uint16_t oProduct; 434 /** Serial number string. */434 /** Offset of the UTF8 serial number string relative to the structure start. */ 435 435 uint16_t oSerialNumber; 436 436 /** Physical USB port the device is connected to. */ … … 588 588 #define VRDE_INTERFACE_VERSION_2 (2) 589 589 #define VRDE_INTERFACE_VERSION_3 (3) 590 #define VRDE_INTERFACE_VERSION_4 (4) 590 591 591 592 /** The header that does not change when the interface changes. */ … … 1462 1463 * Only VRDEINTERFACEHDR is initialized by the caller. 1463 1464 * @param pCallbacks Callbacks required by the interface. The server makes a local copy. 1465 * VRDEINTERFACEHDR version must correspond to the requested interface version. 1464 1466 * @param pvContext The context to be used in callbacks. 1465 1467 */ 1466 1468 1467 int VRDEGetInterface(HVRDESERVER hServer,1468 const char *pszId,1469 VRDEINTERFACEHDR *pInterface,1470 const VRDEINTERFACEHDR *pCallbacks,1471 void *pvContext);1469 DECLR3CALLBACKMEMBER(int, VRDEGetInterface, (HVRDESERVER hServer, 1470 const char *pszId, 1471 VRDEINTERFACEHDR *pInterface, 1472 const VRDEINTERFACEHDR *pCallbacks, 1473 void *pvContext)); 1472 1474 } VRDEENTRYPOINTS_4; 1473 1475 1476 /* Callbacks are the same for the version 3 and version 4 interfaces. */ 1477 typedef VRDECALLBACKS_3 VRDECALLBACKS_4; 1474 1478 1475 1479 /**
Note:
See TracChangeset
for help on using the changeset viewer.