Changeset 58132 in vbox for trunk/src/VBox/Devices/VMMDev
- Timestamp:
- Oct 9, 2015 12:09:37 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 103230
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r57602 r58132 2830 2830 2831 2831 /** 2832 * @ interface_method_impl{FNPCIIOREGIONMAP,MMIO/MMIO2 regions}2832 * @callback_method_impl{FNPCIIOREGIONMAP,MMIO/MMIO2 regions} 2833 2833 */ 2834 2834 static DECLCALLBACK(int) … … 2897 2897 2898 2898 /** 2899 * @ interface_method_impl{FNPCIIOREGIONMAP,I/O Port Region}2899 * @callback_method_impl{FNPCIIOREGIONMAP,I/O Port Region} 2900 2900 */ 2901 2901 static DECLCALLBACK(int) … … 3068 3068 3069 3069 /** 3070 * @interface_method_impl{PDMIVMMDEVPORT, 3070 * @interface_method_impl{PDMIVMMDEVPORT,pfnQueryAbsoluteMouse} 3071 3071 */ 3072 3072 static DECLCALLBACK(int) vmmdevIPort_QueryAbsoluteMouse(PPDMIVMMDEVPORT pInterface, int32_t *pxAbs, int32_t *pyAbs) … … 3087 3087 3088 3088 /** 3089 * @interface_method_impl{PDMIVMMDEVPORT, 3089 * @interface_method_impl{PDMIVMMDEVPORT,pfnSetAbsoluteMouse} 3090 3090 */ 3091 3091 static DECLCALLBACK(int) vmmdevIPort_SetAbsoluteMouse(PPDMIVMMDEVPORT pInterface, int32_t xAbs, int32_t yAbs) … … 3108 3108 3109 3109 /** 3110 * @interface_method_impl{PDMIVMMDEVPORT, 3110 * @interface_method_impl{PDMIVMMDEVPORT,pfnQueryMouseCapabilities} 3111 3111 */ 3112 3112 static DECLCALLBACK(int) vmmdevIPort_QueryMouseCapabilities(PPDMIVMMDEVPORT pInterface, uint32_t *pfCapabilities) … … 3120 3120 3121 3121 /** 3122 * @interface_method_impl{PDMIVMMDEVPORT, 3122 * @interface_method_impl{PDMIVMMDEVPORT,pfnUpdateMouseCapabilities} 3123 3123 */ 3124 3124 static DECLCALLBACK(int) … … 3145 3145 3146 3146 /** 3147 * @interface_method_impl{PDMIVMMDEVPORT, 3147 * @interface_method_impl{PDMIVMMDEVPORT,pfnRequestDisplayChange} 3148 3148 */ 3149 3149 static DECLCALLBACK(int) … … 3209 3209 3210 3210 /** 3211 * @interface_method_impl{PDMIVMMDEVPORT, 3211 * @interface_method_impl{PDMIVMMDEVPORT,pfnRequestSeamlessChange} 3212 3212 */ 3213 3213 static DECLCALLBACK(int) vmmdevIPort_RequestSeamlessChange(PPDMIVMMDEVPORT pInterface, bool fEnabled) … … 3235 3235 3236 3236 /** 3237 * @interface_method_impl{PDMIVMMDEVPORT, 3237 * @interface_method_impl{PDMIVMMDEVPORT,pfnSetMemoryBalloon} 3238 3238 */ 3239 3239 static DECLCALLBACK(int) vmmdevIPort_SetMemoryBalloon(PPDMIVMMDEVPORT pInterface, uint32_t cMbBalloon) … … 3258 3258 3259 3259 /** 3260 * @interface_method_impl{PDMIVMMDEVPORT, 3260 * @interface_method_impl{PDMIVMMDEVPORT,pfnVRDPChange} 3261 3261 */ 3262 3262 static DECLCALLBACK(int) vmmdevIPort_VRDPChange(PPDMIVMMDEVPORT pInterface, bool fVRDPEnabled, uint32_t uVRDPExperienceLevel) … … 3282 3282 3283 3283 /** 3284 * @interface_method_impl{PDMIVMMDEVPORT, 3284 * @interface_method_impl{PDMIVMMDEVPORT,pfnSetStatisticsInterval} 3285 3285 */ 3286 3286 static DECLCALLBACK(int) vmmdevIPort_SetStatisticsInterval(PPDMIVMMDEVPORT pInterface, uint32_t cSecsStatInterval) … … 3308 3308 3309 3309 /** 3310 * @interface_method_impl{PDMIVMMDEVPORT, 3310 * @interface_method_impl{PDMIVMMDEVPORT,pfnSetCredentials} 3311 3311 */ 3312 3312 static DECLCALLBACK(int) vmmdevIPort_SetCredentials(PPDMIVMMDEVPORT pInterface, const char *pszUsername, … … 3347 3347 3348 3348 /** 3349 * @interface_method_impl{PDMIVMMDEVPORT, 3349 * @interface_method_impl{PDMIVMMDEVPORT,pfnVBVAChange} 3350 3350 * 3351 3351 * Notification from the Display. Especially useful when acceleration is … … 3362 3362 3363 3363 /** 3364 * @interface_method_impl{PDMIVMMDEVPORT, 3364 * @interface_method_impl{PDMIVMMDEVPORT,pfnCpuHotUnplug} 3365 3365 */ 3366 3366 static DECLCALLBACK(int) vmmdevIPort_CpuHotUnplug(PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage) … … 3388 3388 3389 3389 /** 3390 * @interface_method_impl{PDMIVMMDEVPORT, 3390 * @interface_method_impl{PDMIVMMDEVPORT,pfnCpuHotPlug} 3391 3391 */ 3392 3392 static DECLCALLBACK(int) vmmdevIPort_CpuHotPlug(PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage) … … 3417 3417 3418 3418 /** 3419 * @callback_method_impl{ NSSMDEVLIVEEXEC}3419 * @callback_method_impl{FNSSMDEVLIVEEXEC} 3420 3420 */ 3421 3421 static DECLCALLBACK(int) vmmdevLiveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uPass)
Note:
See TracChangeset
for help on using the changeset viewer.