Index: /trunk/include/iprt/cdefs.h
===================================================================
--- /trunk/include/iprt/cdefs.h	(revision 26225)
+++ /trunk/include/iprt/cdefs.h	(revision 26226)
@@ -783,19 +783,19 @@
 
 /** @def IN_RT_RC
- * Used to indicate whether we're inside the same link module as
- * the GC Runtime Library.
- */
-/** @def RTGCDECL(type)
- * Runtime Library HC Ring-3 export or import declaration.
+ * Used to indicate whether we're inside the same link module as the raw-mode
+ * context (RC) runtime library.
+ */
+/** @def RTRCDECL(type)
+ * Runtime Library raw-mode context export or import declaration.
  * @param   type    The return type of the function declaration.
  */
 #ifdef IN_RT_RC
 # ifdef IN_RT_STATIC
-#  define RTGCDECL(type)    DECLHIDDEN(type) RTCALL
+#  define RTRCDECL(type)    DECLHIDDEN(type) RTCALL
 # else
-#  define RTGCDECL(type)    DECLEXPORT(type) RTCALL
+#  define RTRCDECL(type)    DECLEXPORT(type) RTCALL
 # endif
 #else
-# define RTGCDECL(type)     DECLIMPORT(type) RTCALL
+# define RTRCDECL(type)     DECLIMPORT(type) RTCALL
 #endif
 
Index: /trunk/include/iprt/initterm.h
===================================================================
--- /trunk/include/iprt/initterm.h	(revision 26225)
+++ /trunk/include/iprt/initterm.h	(revision 26226)
@@ -132,10 +132,10 @@
  * @param   u64ProgramStartNanoTS  The startup timestamp.
  */
-RTGCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS);
+RTRCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS);
 
 /**
  * Terminates the raw-mode context runtime library.
  */
-RTGCDECL(void) RTRCTerm(void);
+RTRCDECL(void) RTRCTerm(void);
 #endif
 
Index: /trunk/src/VBox/Runtime/Doxyfile
===================================================================
--- /trunk/src/VBox/Runtime/Doxyfile	(revision 26225)
+++ /trunk/src/VBox/Runtime/Doxyfile	(revision 26226)
@@ -1221,5 +1221,5 @@
     RTR3DECL \
     RTR0DECL \
-    RTGCDECL \
+    RTRCDECL \
     RTDECL \
     RTDATADECL \
Index: /trunk/src/VBox/Runtime/gc/initterm-gc.cpp
===================================================================
--- /trunk/src/VBox/Runtime/gc/initterm-gc.cpp	(revision 26225)
+++ /trunk/src/VBox/Runtime/gc/initterm-gc.cpp	(revision 26226)
@@ -70,5 +70,5 @@
  * @param   u64ProgramStartNanoTS  The startup timestamp.
  */
-RTGCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS)
+RTRCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS)
 {
     /*
@@ -87,5 +87,5 @@
  * Terminates the raw-mode context runtime library.
  */
-RTGCDECL(void) RTRCTerm(void)
+RTRCDECL(void) RTRCTerm(void)
 {
     /* do nothing */
