VirtualBox

Changeset 10652 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Jul 15, 2008 12:36:13 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
33362
Message:

hgcm: added a callback parameter type (for host use only)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/hgcmsvc.h

    r8155 r10652  
    5858 * 3.2->3.3 Because pfnDisconnectClient helper was added
    5959 * 3.3->4.1 Because the pvService entry and parameter was added
     60 * 4.1->4.2 Because the VBOX_HGCM_SVC_PARM_CALLBACK paramteter type was added
    6061 */
    6162#define VBOX_HGCM_SVC_VERSION_MAJOR (0x0004)
    62 #define VBOX_HGCM_SVC_VERSION_MINOR (0x0001)
     63#define VBOX_HGCM_SVC_VERSION_MINOR (0x0002)
    6364#define VBOX_HGCM_SVC_VERSION ((VBOX_HGCM_SVC_VERSION_MAJOR << 16) + VBOX_HGCM_SVC_VERSION_MINOR)
    6465
     
    8283typedef VBOXHGCMSVCHELPERS *PVBOXHGCMSVCHELPERS;
    8384
    84 
    85 #define VBOX_HGCM_SVC_PARM_INVALID (0U)
    86 #define VBOX_HGCM_SVC_PARM_32BIT (1U)
    87 #define VBOX_HGCM_SVC_PARM_64BIT (2U)
    88 #define VBOX_HGCM_SVC_PARM_PTR   (3U)
     85/**
     86 * Callback type for HGCM services which can send notification messages.
     87 * Intended for use on the host side.
     88 */
     89typedef DECLCALLBACK(void) FNVBOXHGCMCALLBACK(void *pvParm);
     90typedef FNVBOXHGCMCALLBACK *PFNVBOXHGCMCALLBACK;
     91
     92#define VBOX_HGCM_SVC_PARM_INVALID  (0U)
     93#define VBOX_HGCM_SVC_PARM_32BIT    (1U)
     94#define VBOX_HGCM_SVC_PARM_64BIT    (2U)
     95#define VBOX_HGCM_SVC_PARM_PTR      (3U)
     96#define VBOX_HGCM_SVC_PARM_CALLBACK (4U)
    8997
    9098typedef struct VBOXHGCMSVCPARM
     
    102110            void *addr;
    103111        } pointer;
     112        struct
     113        {
     114            PFNVBOXHGCMCALLBACK pFunction;
     115            void *pvData;
     116        } callback;
    104117    } u;
    105118} VBOXHGCMSVCPARM;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette