Changeset 31957 in vbox for trunk/include
- Timestamp:
- Aug 25, 2010 1:27:52 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65186
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vrdpapi.h
r30245 r31957 960 960 #define VRDP_QP_VIDEO_CHANNEL_SUNFLSH (7) 961 961 #endif /* VBOX_WITH_VRDP_VIDEO_CHANNEL */ 962 #define VRDP_QP_FEATURE (8) 962 963 963 964 #define VRDP_SP_BASE 0x1000 … … 965 966 966 967 #pragma pack(1) 968 /* VRDP_QP_FEATURE data. */ 969 typedef struct _VRDPFEATURE 970 { 971 uint32_t u32ClientId; 972 char achInfo[1]; /* UTF8 property input name and output value. */ 973 } VRDPFEATURE; 974 967 975 /* A framebuffer description. */ 968 976 typedef struct _VRDPFRAMEBUFFERINFO … … 1188 1196 * client connections until the entry point VRDPEnableConnections is called by the application. 1189 1197 * 1190 * The caller prepares the callbacks structure. The header.u64Version field 1191 * must be initialized with the version of the insterface to use. 1192 * The server will initialize the callbacks table to match the requested interface. 1198 * The caller prepares the VRDPCALLBACKS_* structure. The header.u64Version field of the 1199 * structure must be initialized with the version of the interface to use. 1200 * The server will return pointer to VRDPENTRYPOINTS_* table in *ppEntryPoints 1201 * to match the requested interface. 1202 * That is if pCallbacks->header.u64Version == VRDP_INTERFACE_VERSION_1, then the server 1203 * expects pCallbacks to point to VRDPCALLBACKS_1 and will return a pointer to VRDPENTRYPOINTS_1. 1193 1204 * 1194 1205 * @param pCallback Pointer to the application callbacks which let the server to fetch
Note:
See TracChangeset
for help on using the changeset viewer.