Changeset 85130 in vbox
- Timestamp:
- Jul 9, 2020 12:15:39 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Doxyfile.Core
r85097 r85130 578 578 PREDEFINED += \ 579 579 "DECLINLINE(type)=inline type" \ 580 APICBOTHCBDECL(type)=type\580 DECL_INLINE_THROW(type)=DECLINLINE(type) \ 581 581 DECL_FORCE_INLINE(type)=DECLINLINE(type) \ 582 582 DECL_NO_INLINE(type)=type \ 583 DECL_NO_RETURN(type)=type \ 583 584 DECLCALLBACK(type)=type \ 585 "DECLCALLBACKTYPE(type,name,args)=type name args" \ 586 "DECLCALLBACKTYPE_EX(type,cconv,name,args)=type name args" \ 587 "DECLCALLBACKPTR(type,name,args)=type (* name) args" \ 588 "DECLCALLBACKPTR_EX(type,cconv,name,args)=type (* name) args" \ 589 "DECLCALLBACKMEMBER(type,name,args)=type (* name) args" \ 590 "DECLCALLBACKMEMBER_EX(type,cconv,name,args)=type (* name) args" \ 584 591 DECLEXPORT(type)=type \ 585 592 DECL_EXPORT_NOTHROW(type)=type \ … … 588 595 DECLHIDDEN(type)=type \ 589 596 DECL_HIDDEN_NOTHROW(type)=type \ 597 DECL_HIDDEN_ONLY(type)=type \ 598 DECL_HIDDEN_THROW(type)=type \ 599 DECL_HIDDEN_DATA(type)=type \ 590 600 DECL_HIDDEN_CONST(type)=type \ 601 DECL_HIDDEN_CALLBACK(type)=type \ 591 602 DECLASM(type)=type \ 592 603 RT_ASM_DECL_PRAGMA_WATCOM(type)=type \ 593 604 RT_ASM_DECL_PRAGMA_WATCOM_386(type)=type \ 594 605 DECLNORETURN(type)=type \ 606 RTCALL= \ 607 \ 608 APICBOTHCBDECL(type)=type \ 595 609 VBOXCALL= \ 596 RTCALL= \597 610 DECLVBGL(type)=type \ 598 611 DECLR0VBGL(type)=type \ -
trunk/src/VBox/Runtime/Doxyfile
r85097 r85130 2057 2057 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2058 2058 2059 PREDEFINED = DOXYGEN_RUNNING \ 2060 RT_C_DECLS_END= \ 2061 RT_C_DECLS_BEGIN= \ 2062 VBOX=1 \ 2063 RT_STRICT=1 \ 2064 __cplusplus=1 \ 2065 RTCALL= \ 2066 ARCH_BITS=HC_ARCH_BITS \ 2067 R3_ARCH_BITS=HC_ARCH_BITS \ 2068 R0_ARCH_BITS=HC_ARCH_BITS \ 2069 RTDECL(type)=type \ 2070 RT_EXPORT_SYMBOL(name)= \ 2071 "DECLINLINE(type)=inline type" \ 2072 DECL_INLINE_THROW(type)=DECLINLINE(type) \ 2073 DECL_FORCE_INLINE(type)=DECLINLINE(type) \ 2074 DECL_NO_INLINE(type)=type \ 2075 DECL_NO_RETURN(type)=type \ 2076 DECLCALLBACK(type)=type \ 2077 RT_ASM_DECL_PRAGMA_WATCOM(type)=type \ 2078 RT_ASM_DECL_PRAGMA_WATCOM_386(type)=type \ 2079 AssertCompile(expr) \ 2080 AssertCompileSize(a,b) \ 2081 AssertCompileSizeAlignment(a,b) \ 2082 AssertCompileMemberSizeAlignment(a,b,c) \ 2083 AssertCompileMemberAlignment(a,b,c) \ 2084 AssertCompileMemberOffset(a,b,c) \ 2085 AssertCompile2MemberOffsets(a,b,c) \ 2086 RT_SRC_POS=1 \ 2087 RT_SRC_POS_ARGS=SRC_POS \ 2088 "RT_SRC_POS_DECL=int SRC_POS" \ 2089 RT_IPRT_FORMAT_ATTR(a,b)= \ 2090 RT_IPRT_FORMAT_ATTR_MAYBE_NULL(a,b)= \ 2091 RT_NOTHROW_PROTO= \ 2092 RT_NOTHROW_DEF= \ 2093 RT_NO_THROW_PROTO= \ 2094 RT_NO_THROW_DEF= \ 2095 \ 2096 RT_MSC_PREREQ(a)=0 \ 2097 RT_MSC_PREREQ_EX(a,b)=b 2059 PREDEFINED = \ 2060 DOXYGEN_RUNNING \ 2061 RT_C_DECLS_END= \ 2062 RT_C_DECLS_BEGIN= \ 2063 VBOX=1 \ 2064 RT_STRICT=1 \ 2065 __cplusplus=1 \ 2066 ARCH_BITS=HC_ARCH_BITS \ 2067 R3_ARCH_BITS=HC_ARCH_BITS \ 2068 R0_ARCH_BITS=HC_ARCH_BITS \ 2069 RTDECL(type)=type \ 2070 RT_EXPORT_SYMBOL(name)= \ 2071 \ 2072 RT_SRC_POS=1 \ 2073 RT_SRC_POS_ARGS=SRC_POS \ 2074 "RT_SRC_POS_DECL=int SRC_POS" \ 2075 "RTLOG_COMMA_SRC_POS_DECL=, int SRC_POS" \ 2076 \ 2077 RT_IPRT_FORMAT_ATTR(a,b)= \ 2078 RT_IPRT_FORMAT_ATTR_MAYBE_NULL(a,b)= \ 2079 RT_NOTHROW_PROTO= \ 2080 RT_NOTHROW_DEF= \ 2081 RT_NO_THROW_PROTO= \ 2082 RT_NO_THROW_DEF= \ 2083 RTASN1CONTEXTTAG_IMPL_CURSOR_INLINES(a)= \ 2084 \ 2085 RT_MSC_PREREQ(a)=0 \ 2086 RT_MSC_PREREQ_EX(a,b)=b 2087 2088 PREDEFINED += \ 2089 AssertCompile(expr) \ 2090 AssertCompileSize(a,b) \ 2091 AssertCompileSizeAlignment(a,b) \ 2092 AssertCompileMemberSizeAlignment(a,b,c) \ 2093 AssertCompileMemberAlignment(a,b,c) \ 2094 AssertCompileMemberOffset(a,b,c) \ 2095 AssertCompile2MemberOffsets(a,b,c) 2096 2097 # decl and calling conventions. 2098 PREDEFINED += \ 2099 "DECLINLINE(type)=inline type" \ 2100 DECL_INLINE_THROW(type)=DECLINLINE(type) \ 2101 DECL_FORCE_INLINE(type)=DECLINLINE(type) \ 2102 DECL_NO_INLINE(type)=type \ 2103 DECL_NO_RETURN(type)=type \ 2104 DECLCALLBACK(type)=type \ 2105 "DECLCALLBACKTYPE(type,name,args)=type name args" \ 2106 "DECLCALLBACKTYPE_EX(type,cconv,name,args)=type name args" \ 2107 "DECLCALLBACKPTR(type,name,args)=type (* name) args" \ 2108 "DECLCALLBACKPTR_EX(type,cconv,name,args)=type (* name) args" \ 2109 "DECLCALLBACKMEMBER(type,name,args)=type (* name) args" \ 2110 "DECLCALLBACKMEMBER_EX(type,cconv,name,args)=type (* name) args" \ 2111 DECLEXPORT(type)=type \ 2112 DECL_EXPORT_NOTHROW(type)=type \ 2113 DECLIMPORT(type)=type \ 2114 DECL_IMPORT_NOTHROW(type)=type \ 2115 DECLHIDDEN(type)=type \ 2116 DECL_HIDDEN_NOTHROW(type)=type \ 2117 DECL_HIDDEN_ONLY(type)=type \ 2118 DECL_HIDDEN_THROW(type)=type \ 2119 DECL_HIDDEN_DATA(type)=type \ 2120 DECL_HIDDEN_CONST(type)=type \ 2121 DECL_HIDDEN_CALLBACK(type)=type \ 2122 DECLASM(type)=type \ 2123 RT_ASM_DECL_PRAGMA_WATCOM(type)=type \ 2124 RT_ASM_DECL_PRAGMA_WATCOM_386(type)=type \ 2125 DECLNORETURN(type)=type \ 2126 RTCALL= 2098 2127 2099 2128 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
Note:
See TracChangeset
for help on using the changeset viewer.