VirtualBox

Changeset 65168 in vbox


Ignore:
Timestamp:
Jan 5, 2017 8:14:10 PM (8 years ago)
Author:
vboxsync
Message:

doxygen fixes

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Doxyfile.Core

    r65158 r65168  
    564564    DECLSPEC_HIDDEN= \
    565565    VMSVGA3DCOCOA_DECL(type)=type \
    566     VBOX_LISTENER_DECLARE(a)=
     566    VBOX_LISTENER_DECLARE(a)= \
     567    VBOX_WITH_RAW_MODE_NOT_R0
    567568
    568569# BS3Kit
  • trunk/Makefile.kmk

    r65159 r65168  
    917917               -e '/warning. Unexpected tag .dd. found/d' \
    918918               -e '/warning. Unsupported xml.html tag .globalScope. found/d' \
    919                -e '/\/include\/VBox\/com\/EventQueue\.h.* warning/b ignore' \
    920                -e '/\/include\/VBox\/com\/NativeEventQueue\.h.* warning/b ignore' \
    921919               -e '/\/src\/VBox\/Main\/.* warning/b ignore' \
    922920               -e '/\/src\/VBox\/Additions\/WINNT\/VBoxTray\/VBoxDispIf\.h.* warning/b ignore' \
    923921               -e '/\/src\/VBox\/Additions\/common\/crOpenGL\/.* warning/b ignore' \
    924922               -e '/\/src\/VBox\/Additions\/x11\/VBoxClient\/seamless-x11\.h.* warning/b ignore' \
    925                -e '/\/src\/VBox\/HostServices\/SharedFolders\/.* warning/b ignore' \
    926923               -e '/\/src\/VBox\/HostDrivers\/Support\/win\/SUPR3HardenedMain-win\.cpp.* warning/b ignore' \
    927924               -e '/\/src\/VBox\/ValidationKit\/.* warning/b ignore' \
  • trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp

    r65123 r65168  
    379379 * @param  pClient               Data structure describing the client accessing the shared folder
    380380 * @param  pszPath               Path to the file or folder on the host.
    381  * @param  pParms->CreateFlags  Creation or open parameters, see include/VBox/shflsvc.h
    382  * @param  pParms->Info          When a new file is created this specifies the initial parameters.
     381 * @param  pParms @a CreateFlags Creation or open parameters, see include/VBox/shflsvc.h
     382 * @param  pParms @a Info        When a new file is created this specifies the initial parameters.
    383383 *                               When a file is created or overwritten, it also specifies the
    384384 *                               initial size.
    385  * @retval pParms->Result        Shared folder status code, see include/VBox/shflsvc.h
    386  * @retval pParms->Handle        On success the (shared folder) handle of the file opened or
     385 * @retval pParms @a Resulte     Shared folder status code, see include/VBox/shflsvc.h
     386 * @retval pParms @a Handle      On success the (shared folder) handle of the file opened or
    387387 *                               created
    388  * @retval pParms->Info          On success the parameters of the file opened or created
     388 * @retval pParms @a Info        On success the parameters of the file opened or created
    389389 */
    390390static int vbsfOpenFile(SHFLCLIENTDATA *pClient, const char *pszPath, SHFLCREATEPARMS *pParms)
     
    552552 *
    553553 * @returns IPRT status code
     554 * @param  pClient               Data structure describing the client accessing the shared folder
    554555 * @param  pszPath               Path to the file or folder on the host.
    555  * @param  pParms->CreateFlags  Creation or open parameters, see include/VBox/shflsvc.h
    556  * @retval pParms->Result        Shared folder status code, see include/VBox/shflsvc.h
    557  * @retval pParms->Handle        On success the (shared folder) handle of the folder opened or
     556 * @param  pParms @a CreateFlags Creation or open parameters, see include/VBox/shflsvc.h
     557 * @retval pParms @a Result      Shared folder status code, see include/VBox/shflsvc.h
     558 * @retval pParms @a Handle      On success the (shared folder) handle of the folder opened or
    558559 *                               created
    559  * @retval pParms->Info          On success the parameters of the folder opened or created
     560 * @retval pParms @a Info        On success the parameters of the folder opened or created
    560561 *
    561562 * @note folders are created with fMode = 0777
     
    773774 * @param   cbPath         Presumably the length of the path in pPath.  Actually
    774775 *                         ignored, as pPath contains a length parameter.
    775  * @param   pParms->Info  If a new file is created or an old one overwritten, set
     776 * @param   pParms @a Info If a new file is created or an old one overwritten, set
    776777 *                         these attributes
    777  * @retval  pParms->Result Shared folder result code, see include/VBox/shflsvc.h
    778  * @retval  pParms->Handle Shared folder handle to the newly opened file
    779  * @retval  pParms->Info  Attributes of the file or folder opened
     778 * @retval  pParms @a Result Shared folder result code, see include/VBox/shflsvc.h
     779 * @retval  pParms @a Handle Shared folder handle to the newly opened file
     780 * @retval  pParms @a Info Attributes of the file or folder opened
    780781 *
    781782 * @note This function returns success if a "non-exceptional" error occurred,
  • trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp

    r64720 r65168  
    153153 * Loads a the hidden parts of a selector register.
    154154 *
    155  * @param   pVCpu               The cross context virtual CPU structure of the calling EMT.
     155 * @param   pVCpu       The cross context virtual CPU structure of the calling EMT.
     156 * @param   pSReg       The selector register to lazily load hidden parts of.
    156157 */
    157158VMM_INT_DECL(void) CPUMGuestLazyLoadHiddenSelectorReg(PVMCPU pVCpu, PCPUMSELREG pSReg)
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h

    r65097 r65168  
    191191 * Helper used by iret.
    192192 *
     193 * @param   pVCpu               The cross context virtual CPU structure of the calling thread.
    193194 * @param   uCpl                The new CPL.
    194195 * @param   pSReg               Pointer to the segment register.
  • trunk/src/VBox/VMM/VMMAll/TRPMAll.cpp

    r62606 r65168  
    457457 *  or does not return at all (when the trap is actually forwarded)
    458458 *
    459  * @param   pVM         The cross context VM structure.
     459 * @param   pVCpu       The cross context virtual CPU structure.
    460460 * @param   pRegFrame   Pointer to the register frame for the trap.
    461461 * @param   iGate       Trap or interrupt gate number
Note: See TracChangeset for help on using the changeset viewer.

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