VirtualBox

Changeset 58132 in vbox for trunk/src/VBox/Devices/VMMDev


Ignore:
Timestamp:
Oct 9, 2015 12:09:37 AM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
103230
Message:

*: Doxygen fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/VMMDev/VMMDev.cpp

    r57602 r58132  
    28302830
    28312831/**
    2832  * @interface_method_impl{FNPCIIOREGIONMAP, MMIO/MMIO2 regions}
     2832 * @callback_method_impl{FNPCIIOREGIONMAP,MMIO/MMIO2 regions}
    28332833 */
    28342834static DECLCALLBACK(int)
     
    28972897
    28982898/**
    2899  * @interface_method_impl{FNPCIIOREGIONMAP, I/O Port Region}
     2899 * @callback_method_impl{FNPCIIOREGIONMAP,I/O Port Region}
    29002900 */
    29012901static DECLCALLBACK(int)
     
    30683068
    30693069/**
    3070  * @interface_method_impl{PDMIVMMDEVPORT, pfnQueryAbsoluteMouse}
     3070 * @interface_method_impl{PDMIVMMDEVPORT,pfnQueryAbsoluteMouse}
    30713071 */
    30723072static DECLCALLBACK(int) vmmdevIPort_QueryAbsoluteMouse(PPDMIVMMDEVPORT pInterface, int32_t *pxAbs, int32_t *pyAbs)
     
    30873087
    30883088/**
    3089  * @interface_method_impl{PDMIVMMDEVPORT, pfnSetAbsoluteMouse}
     3089 * @interface_method_impl{PDMIVMMDEVPORT,pfnSetAbsoluteMouse}
    30903090 */
    30913091static DECLCALLBACK(int) vmmdevIPort_SetAbsoluteMouse(PPDMIVMMDEVPORT pInterface, int32_t xAbs, int32_t yAbs)
     
    31083108
    31093109/**
    3110  * @interface_method_impl{PDMIVMMDEVPORT, pfnQueryMouseCapabilities}
     3110 * @interface_method_impl{PDMIVMMDEVPORT,pfnQueryMouseCapabilities}
    31113111 */
    31123112static DECLCALLBACK(int) vmmdevIPort_QueryMouseCapabilities(PPDMIVMMDEVPORT pInterface, uint32_t *pfCapabilities)
     
    31203120
    31213121/**
    3122  * @interface_method_impl{PDMIVMMDEVPORT, pfnUpdateMouseCapabilities}
     3122 * @interface_method_impl{PDMIVMMDEVPORT,pfnUpdateMouseCapabilities}
    31233123 */
    31243124static DECLCALLBACK(int)
     
    31453145
    31463146/**
    3147  * @interface_method_impl{PDMIVMMDEVPORT, pfnRequestDisplayChange}
     3147 * @interface_method_impl{PDMIVMMDEVPORT,pfnRequestDisplayChange}
    31483148 */
    31493149static DECLCALLBACK(int)
     
    32093209
    32103210/**
    3211  * @interface_method_impl{PDMIVMMDEVPORT, pfnRequestSeamlessChange}
     3211 * @interface_method_impl{PDMIVMMDEVPORT,pfnRequestSeamlessChange}
    32123212 */
    32133213static DECLCALLBACK(int) vmmdevIPort_RequestSeamlessChange(PPDMIVMMDEVPORT pInterface, bool fEnabled)
     
    32353235
    32363236/**
    3237  * @interface_method_impl{PDMIVMMDEVPORT, pfnSetMemoryBalloon}
     3237 * @interface_method_impl{PDMIVMMDEVPORT,pfnSetMemoryBalloon}
    32383238 */
    32393239static DECLCALLBACK(int) vmmdevIPort_SetMemoryBalloon(PPDMIVMMDEVPORT pInterface, uint32_t cMbBalloon)
     
    32583258
    32593259/**
    3260  * @interface_method_impl{PDMIVMMDEVPORT, pfnVRDPChange}
     3260 * @interface_method_impl{PDMIVMMDEVPORT,pfnVRDPChange}
    32613261 */
    32623262static DECLCALLBACK(int) vmmdevIPort_VRDPChange(PPDMIVMMDEVPORT pInterface, bool fVRDPEnabled, uint32_t uVRDPExperienceLevel)
     
    32823282
    32833283/**
    3284  * @interface_method_impl{PDMIVMMDEVPORT, pfnSetStatisticsInterval}
     3284 * @interface_method_impl{PDMIVMMDEVPORT,pfnSetStatisticsInterval}
    32853285 */
    32863286static DECLCALLBACK(int) vmmdevIPort_SetStatisticsInterval(PPDMIVMMDEVPORT pInterface, uint32_t cSecsStatInterval)
     
    33083308
    33093309/**
    3310  * @interface_method_impl{PDMIVMMDEVPORT, pfnSetCredentials}
     3310 * @interface_method_impl{PDMIVMMDEVPORT,pfnSetCredentials}
    33113311 */
    33123312static DECLCALLBACK(int) vmmdevIPort_SetCredentials(PPDMIVMMDEVPORT pInterface, const char *pszUsername,
     
    33473347
    33483348/**
    3349  * @interface_method_impl{PDMIVMMDEVPORT, pfnVBVAChange}
     3349 * @interface_method_impl{PDMIVMMDEVPORT,pfnVBVAChange}
    33503350 *
    33513351 * Notification from the Display.  Especially useful when acceleration is
     
    33623362
    33633363/**
    3364  * @interface_method_impl{PDMIVMMDEVPORT, pfnCpuHotUnplug}
     3364 * @interface_method_impl{PDMIVMMDEVPORT,pfnCpuHotUnplug}
    33653365 */
    33663366static DECLCALLBACK(int) vmmdevIPort_CpuHotUnplug(PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage)
     
    33883388
    33893389/**
    3390  * @interface_method_impl{PDMIVMMDEVPORT, pfnCpuHotPlug}
     3390 * @interface_method_impl{PDMIVMMDEVPORT,pfnCpuHotPlug}
    33913391 */
    33923392static DECLCALLBACK(int) vmmdevIPort_CpuHotPlug(PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage)
     
    34173417
    34183418/**
    3419  * @callback_method_impl{NSSMDEVLIVEEXEC}
     3419 * @callback_method_impl{FNSSMDEVLIVEEXEC}
    34203420 */
    34213421static DECLCALLBACK(int) vmmdevLiveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uPass)
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