Changeset 26226 in vbox
- Timestamp:
- Feb 3, 2010 10:11:49 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r26224 r26226 783 783 784 784 /** @def IN_RT_RC 785 * Used to indicate whether we're inside the same link module as 786 * the GC Runtime Library.787 */ 788 /** @def RT GCDECL(type)789 * Runtime Library HC Ring-3export or import declaration.785 * Used to indicate whether we're inside the same link module as the raw-mode 786 * context (RC) runtime library. 787 */ 788 /** @def RTRCDECL(type) 789 * Runtime Library raw-mode context export or import declaration. 790 790 * @param type The return type of the function declaration. 791 791 */ 792 792 #ifdef IN_RT_RC 793 793 # ifdef IN_RT_STATIC 794 # define RT GCDECL(type) DECLHIDDEN(type) RTCALL794 # define RTRCDECL(type) DECLHIDDEN(type) RTCALL 795 795 # else 796 # define RT GCDECL(type) DECLEXPORT(type) RTCALL796 # define RTRCDECL(type) DECLEXPORT(type) RTCALL 797 797 # endif 798 798 #else 799 # define RT GCDECL(type) DECLIMPORT(type) RTCALL799 # define RTRCDECL(type) DECLIMPORT(type) RTCALL 800 800 #endif 801 801 -
trunk/include/iprt/initterm.h
r25645 r26226 132 132 * @param u64ProgramStartNanoTS The startup timestamp. 133 133 */ 134 RT GCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS);134 RTRCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS); 135 135 136 136 /** 137 137 * Terminates the raw-mode context runtime library. 138 138 */ 139 RT GCDECL(void) RTRCTerm(void);139 RTRCDECL(void) RTRCTerm(void); 140 140 #endif 141 141 -
trunk/src/VBox/Runtime/Doxyfile
r25960 r26226 1221 1221 RTR3DECL \ 1222 1222 RTR0DECL \ 1223 RT GCDECL \1223 RTRCDECL \ 1224 1224 RTDECL \ 1225 1225 RTDATADECL \ -
trunk/src/VBox/Runtime/gc/initterm-gc.cpp
r13813 r26226 70 70 * @param u64ProgramStartNanoTS The startup timestamp. 71 71 */ 72 RT GCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS)72 RTRCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS) 73 73 { 74 74 /* … … 87 87 * Terminates the raw-mode context runtime library. 88 88 */ 89 RT GCDECL(void) RTRCTerm(void)89 RTRCDECL(void) RTRCTerm(void) 90 90 { 91 91 /* do nothing */
Note:
See TracChangeset
for help on using the changeset viewer.