VirtualBox

Ignore:
Timestamp:
Jul 8, 2020 7:33:26 PM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
139061
Message:

iprt/cdefs.h: Refactored the typedef use of DECLCALLBACK as well as DECLCALLBACKMEMBER to wrap the whole expression, similar to the DECLR?CALLBACKMEMBER macros. This allows adding a throw() at the end when compiling with the VC++ compiler to indicate that the callbacks won't throw anything, so we can stop supressing the C5039 warning about passing functions that can potential throw C++ exceptions to extern C code that can't necessarily cope with such (unwind,++). Introduced a few _EX variations that allows specifying different/no calling convention too, as that's handy when dynamically resolving host APIs. Fixed numerous places missing DECLCALLBACK and such. Left two angry @todos regarding use of CreateThread. bugref:9794

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/include/VMMInternal.h

    r82968 r85121  
    472472 * @param   pVM         The cross context VM structure.
    473473 */
    474 typedef DECLCALLBACK(int) FNVMMR0SETJMP(PVMCC pVM, PVMCPUCC pVCpu);
     474typedef DECLCALLBACKTYPE(int, FNVMMR0SETJMP,(PVMCC pVM, PVMCPUCC pVCpu));
    475475/** Pointer to FNVMMR0SETJMP(). */
    476476typedef FNVMMR0SETJMP *PFNVMMR0SETJMP;
     
    498498 * @param   pvUser      The user argument.
    499499 */
    500 typedef DECLCALLBACK(int) FNVMMR0SETJMP2(PGVM pGVM, VMCPUID idCpu);
     500typedef DECLCALLBACKTYPE(int, FNVMMR0SETJMP2,(PGVM pGVM, VMCPUID idCpu));
    501501/** Pointer to FNVMMR0SETJMP2(). */
    502502typedef FNVMMR0SETJMP2 *PFNVMMR0SETJMP2;
     
    520520 * @param   pvUser      The user argument.
    521521 */
    522 typedef DECLCALLBACK(int) FNVMMR0SETJMPEX(void *pvUser);
     522typedef DECLCALLBACKTYPE(int, FNVMMR0SETJMPEX,(void *pvUser));
    523523/** Pointer to FNVMMR0SETJMPEX(). */
    524524typedef FNVMMR0SETJMPEX *PFNVMMR0SETJMPEX;
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