Changeset 58178 in vbox for trunk/include/VBox
- Timestamp:
- Oct 12, 2015 11:40:57 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103292
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuestLib.h
r58154 r58178 94 94 # define DECLVBGL(type) DECLR0VBGL(type) 95 95 96 typedef uint32_t VBGLIOPORT; /**< @todo r=bird: We have RTIOPORT (uint16_t) for this. */97 98 96 99 97 # ifdef VBGL_VBOXGUEST … … 105 103 * @return VBox status code. 106 104 */ 107 DECLVBGL(int) VbglInit (VBGLIOPORT portVMMDev, struct VMMDevMemory *pVMMDevMemory);105 DECLVBGL(int) VbglInitPrimary(RTIOPORT portVMMDev, struct VMMDevMemory *pVMMDevMemory); 108 106 109 107 # else … … 115 113 * @return VBox status code. 116 114 */ 117 DECLVBGL(int) VbglInit 115 DECLVBGL(int) VbglInitClient(void); 118 116 119 117 # endif … … 122 120 * The library termination function. 123 121 */ 124 DECLVBGL(void) VbglTerminate 122 DECLVBGL(void) VbglTerminate(void); 125 123 126 124 … … 132 130 * Allocate memory for generic request and initialize the request header. 133 131 * 134 * @param ppReq pointer to resulting memory address. 135 * @param cbSize size of memory block required for the request. 136 * @param reqType the generic request type. 137 * 138 * @return VBox status code. 139 */ 140 DECLVBGL(int) VbglGRAlloc (VMMDevRequestHeader **ppReq, uint32_t cbSize, VMMDevRequestType reqType); 132 * @returns VBox status code. 133 * @param ppReq Where to return the pointer to the allocated memory. 134 * @param cbReq Size of memory block required for the request. 135 * @param enmReqType the generic request type. 136 */ 137 DECLVBGL(int) VbglGRAlloc(VMMDevRequestHeader **ppReq, uint32_t cbReq, VMMDevRequestType enmReqType); 141 138 142 139 /** … … 147 144 * @return VBox status code. 148 145 */ 149 DECLVBGL(int) VbglGRPerform 146 DECLVBGL(int) VbglGRPerform(VMMDevRequestHeader *pReq); 150 147 151 148 /** … … 156 153 * @return VBox status code. 157 154 */ 158 DECLVBGL(void) VbglGRFree 155 DECLVBGL(void) VbglGRFree(VMMDevRequestHeader *pReq); 159 156 160 157 /** … … 168 165 * @return VBox status code. 169 166 */ 170 DECLVBGL(int) VbglGRVerify 167 DECLVBGL(int) VbglGRVerify(const VMMDevRequestHeader *pReq, size_t cbReq); 171 168 /** @} */ 172 169
Note:
See TracChangeset
for help on using the changeset viewer.