~ubuntu-branches/ubuntu/quantal/virtualbox/quantal

« back to all changes in this revision

Viewing changes to src/VBox/Main/include/ConsoleImpl.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2012-04-05 12:41:55 UTC
  • mfrom: (3.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20120405124155-i7b39tv5ddwhubbe
Tags: 4.1.12-dfsg-2
* Upstream has replaced the 4.1.12 tarball with a new one that fixes a
  crash when creating host only interfaces. (Closes: #667460)
  - Add 36-tarball-respin.patch which contains the diff between the old
    and the new tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
221
221
    EventSource *getEventSource() { return mEventSource; }
222
222
 
223
223
    int VRDPClientLogon(uint32_t u32ClientId, const char *pszUser, const char *pszPassword, const char *pszDomain);
 
224
    void VRDPClientStatusChange(uint32_t u32ClientId, const char *pszStatus);
224
225
    void VRDPClientConnect(uint32_t u32ClientId);
225
226
    void VRDPClientDisconnect(uint32_t u32ClientId, uint32_t fu32Intercepted);
226
227
    void VRDPInterceptAudio(uint32_t u32ClientId);
674
675
    void guestPropertiesHandleVMReset(void);
675
676
    bool guestPropertiesVRDPEnabled(void);
676
677
    void guestPropertiesVRDPUpdateLogon(uint32_t u32ClientId, const char *pszUser, const char *pszDomain);
 
678
    void guestPropertiesVRDPUpdateActiveClient(uint32_t u32ClientId);
 
679
    void guestPropertiesVRDPUpdateClientAttach(uint32_t u32ClientId, bool fAttached);
 
680
    void guestPropertiesVRDPUpdateNameChange(uint32_t u32ClientId, const char *pszName);
677
681
    void guestPropertiesVRDPUpdateDisconnect(uint32_t u32ClientId);
678
682
#endif
679
683