Changeset 26224 in vbox for trunk/include
- Timestamp:
- Feb 3, 2010 10:03:01 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r26011 r26224 79 79 #define IN_RC 80 80 #define IN_RC 81 #define IN_RT_ GC81 #define IN_RT_RC 82 82 #define IN_RT_R0 83 83 #define IN_RT_R3 … … 743 743 * or not. The IPRT symbols will be declared as hidden (if 744 744 * supported). Note that this define has no effect without setting 745 * IN_RT_R0, IN_RT_R3 or IN_RT_ GC indicators are set first.745 * IN_RT_R0, IN_RT_R3 or IN_RT_RC indicators are set first. 746 746 */ 747 747 … … 782 782 #endif 783 783 784 /** @def IN_RT_ GC784 /** @def IN_RT_RC 785 785 * Used to indicate whether we're inside the same link module as 786 786 * the GC Runtime Library. … … 790 790 * @param type The return type of the function declaration. 791 791 */ 792 #ifdef IN_RT_ GC792 #ifdef IN_RT_RC 793 793 # ifdef IN_RT_STATIC 794 794 # define RTGCDECL(type) DECLHIDDEN(type) RTCALL … … 805 805 * @param type The return type of the function declaration. 806 806 */ 807 #if defined(IN_RT_R3) || defined(IN_RT_ GC) || defined(IN_RT_R0)807 #if defined(IN_RT_R3) || defined(IN_RT_RC) || defined(IN_RT_R0) 808 808 # ifdef IN_RT_STATIC 809 809 # define RTDECL(type) DECLHIDDEN(type) RTCALL … … 820 820 * @param type The return type of the function declaration. 821 821 */ 822 #if defined(IN_RT_R3) || defined(IN_RT_ GC) || defined(IN_RT_R0)822 #if defined(IN_RT_R3) || defined(IN_RT_RC) || defined(IN_RT_R0) 823 823 # ifdef IN_RT_STATIC 824 824 # define RTDATADECL(type) DECLHIDDEN(type) … … 833 833 * Declares an class living in the runtime. 834 834 */ 835 #if defined(IN_RT_R3) || defined(IN_RT_ GC) || defined(IN_RT_R0)835 #if defined(IN_RT_R3) || defined(IN_RT_RC) || defined(IN_RT_R0) 836 836 # ifdef IN_RT_STATIC 837 837 # define RT_DECL_CLASS
Note:
See TracChangeset
for help on using the changeset viewer.