VirtualBox

Changeset 26226 in vbox


Ignore:
Timestamp:
Feb 3, 2010 10:11:49 PM (15 years ago)
Author:
vboxsync
Message:

s/RTGCDECL/RTGCDECL/g

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/cdefs.h

    r26224 r26226  
    783783
    784784/** @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 RTGCDECL(type)
    789  * Runtime Library HC Ring-3 export 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.
    790790 * @param   type    The return type of the function declaration.
    791791 */
    792792#ifdef IN_RT_RC
    793793# ifdef IN_RT_STATIC
    794 #  define RTGCDECL(type)    DECLHIDDEN(type) RTCALL
     794#  define RTRCDECL(type)    DECLHIDDEN(type) RTCALL
    795795# else
    796 #  define RTGCDECL(type)    DECLEXPORT(type) RTCALL
     796#  define RTRCDECL(type)    DECLEXPORT(type) RTCALL
    797797# endif
    798798#else
    799 # define RTGCDECL(type)     DECLIMPORT(type) RTCALL
     799# define RTRCDECL(type)     DECLIMPORT(type) RTCALL
    800800#endif
    801801
  • trunk/include/iprt/initterm.h

    r25645 r26226  
    132132 * @param   u64ProgramStartNanoTS  The startup timestamp.
    133133 */
    134 RTGCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS);
     134RTRCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS);
    135135
    136136/**
    137137 * Terminates the raw-mode context runtime library.
    138138 */
    139 RTGCDECL(void) RTRCTerm(void);
     139RTRCDECL(void) RTRCTerm(void);
    140140#endif
    141141
  • trunk/src/VBox/Runtime/Doxyfile

    r25960 r26226  
    12211221    RTR3DECL \
    12221222    RTR0DECL \
    1223     RTGCDECL \
     1223    RTRCDECL \
    12241224    RTDECL \
    12251225    RTDATADECL \
  • trunk/src/VBox/Runtime/gc/initterm-gc.cpp

    r13813 r26226  
    7070 * @param   u64ProgramStartNanoTS  The startup timestamp.
    7171 */
    72 RTGCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS)
     72RTRCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS)
    7373{
    7474    /*
     
    8787 * Terminates the raw-mode context runtime library.
    8888 */
    89 RTGCDECL(void) RTRCTerm(void)
     89RTRCDECL(void) RTRCTerm(void)
    9090{
    9191    /* do nothing */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette