Changeset 3280 in vbox for trunk/include/VBox
- Timestamp:
- Jun 25, 2007 4:15:02 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vrdpapi.h
r3278 r3280 34 34 35 35 36 /** @defgroup grp_vrdp 37 * VirtualBox Remote Desktop Protocol (VRDP) interface that allows to use36 /** @defgroup grp_vrdp VRDP 37 * VirtualBox Remote Desktop Protocol (VRDP) interface that lets to use 38 38 * the VRDP server. 39 39 * @{ 40 40 */ 41 41 42 /** Flags for VDRPSetFramebuffer */ 43 #define VRDP_INTERNAL_FRAMEBUFFER (0) 44 #define VRDP_EXTERNAL_FRAMEBUFFER (1) 45 46 /** Default port that VRDP binds to */ 42 /** Default port that VRDP binds to. */ 47 43 #define VRDP_DEFAULT_PORT (3389) 48 44 49 45 __BEGIN_DECLS 50 46 51 /* Forward declaration */ 52 47 /* Forward declaration of the VRDP server instance handle. */ 53 48 #ifdef __cplusplus 54 55 49 class VRDPServer; 56 50 typedef class VRDPServer *HVRDPSERVER; 57 58 51 #else 59 60 52 struct VRDPServer; 61 53 typedef struct VRDPServer *HVRDPSERVER; 62 63 #endif 54 #endif /* __cplusplus */ 64 55 65 56 /** … … 74 65 VRDPR3DECL(int) VRDPStartServer (IConsole *pconsole, IVRDPServer *pvrdpserver, HVRDPSERVER *phserver); 75 66 76 77 /**78 * Set framebuffer which will be delivered to client.79 *80 * @param hserver Handle of VRDP server instance.81 * @param pframebuffer Pointer to external IFramebuffer to be used.82 * @param flags VRDP_EXTERNAL_FRAMEBUFFER - the server must use supplied83 * framebuffer or do not use framebuffer if pframebuffer == NULL84 * VRDP_INTERNAL_FRAMEBUFFER - the server must create internal85 * framebuffer and register it with Machine's IDisplay,86 * pframebuffer ignored.87 */88 VRDPR3DECL(int) VRDPSetFramebuffer (HVRDPSERVER hserver, IFramebuffer *pframebuffer, uint32_t flags);89 67 90 68 /**
Note:
See TracChangeset
for help on using the changeset viewer.