VirtualBox

Changeset 204 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Jan 21, 2007 9:57:51 AM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
17688
Message:

runtime.h now includes everything. Created a new header, initterm.h, which includes the RT*Init/Term() prototypes.

Location:
trunk/src/VBox/Runtime
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/generic/uuid-generic.cpp

    r129 r204  
    4040 * @param   pUuid           Where to store generated uuid.
    4141 */
    42 RTR3DECL(int)  RTUuidCreate(PRTUUID pUuid)
     42RTDECL(int)  RTUuidCreate(PRTUUID pUuid)
    4343{
    4444    /* validate input. */
     
    6666 * @param   pUuid           Where to store generated null uuid.
    6767 */
    68 RTR3DECL(int)  RTUuidClear(PRTUUID pUuid)
     68RTDECL(int)  RTUuidClear(PRTUUID pUuid)
    6969{
    7070    AssertReturn(pUuid, VERR_INVALID_PARAMETER);
     
    8181 * @param   pUuid           uuid to check.
    8282 */
    83 RTR3DECL(int)  RTUuidIsNull(PCRTUUID pUuid)
     83RTDECL(int)  RTUuidIsNull(PCRTUUID pUuid)
    8484{
    8585    AssertReturn(pUuid, VERR_INVALID_PARAMETER);
     
    9696 * @param   pUuid2          Second value to compare.
    9797 */
    98 RTR3DECL(int)  RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2)
     98RTDECL(int)  RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2)
    9999{
    100100    /*
     
    143143 * @param   cchString       pszString buffer length, must be >= RTUUID_STR_LENGTH.
    144144 */
    145 RTR3DECL(int)  RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString)
     145RTDECL(int)  RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString)
    146146{
    147147    /* validate parameters */
     
    218218 * @param   pszString       String with UUID text data.
    219219 */
    220 RTR3DECL(int)  RTUuidFromStr(PRTUUID pUuid, const char *pszString)
     220RTDECL(int)  RTUuidFromStr(PRTUUID pUuid, const char *pszString)
    221221{
    222222    /* 0xff if not a hex number, otherwise the value. (Assumes UTF-8 encoded strings.) */
  • trunk/src/VBox/Runtime/r3/linux/uuid-linux.cpp

    r1 r204  
    7373 * @param   pUuid           Where to store generated uuid.
    7474 */
    75 RTR3DECL(int)  RTUuidCreate(PRTUUID pUuid)
     75RTDECL(int)  RTUuidCreate(PRTUUID pUuid)
    7676{
    7777    /* check params */
     
    9494 * @param   pUuid           Where to store generated null uuid.
    9595 */
    96 RTR3DECL(int)  RTUuidClear(PRTUUID pUuid)
     96RTDECL(int)  RTUuidClear(PRTUUID pUuid)
    9797{
    9898    /* check params */
     
    114114 * @param   pUuid           uuid to check.
    115115 */
    116 RTR3DECL(int)  RTUuidIsNull(PCRTUUID pUuid)
     116RTDECL(int)  RTUuidIsNull(PCRTUUID pUuid)
    117117{
    118118    /* check params */
     
    133133 * @param   pUuid2          Second value to compare.
    134134 */
    135 RTR3DECL(int)  RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2)
     135RTDECL(int)  RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2)
    136136{
    137137    /* check params */
     
    153153 * @param   cchString       pszString buffer length, must be >= RTUUID_STR_LENGTH.
    154154 */
    155 RTR3DECL(int)  RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString)
     155RTDECL(int)  RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString)
    156156{
    157157    /* check params */
     
    177177 * @param   pszString       String with UUID text data.
    178178 */
    179 RTR3DECL(int)  RTUuidFromStr(PRTUUID pUuid, const char *pszString)
     179RTDECL(int)  RTUuidFromStr(PRTUUID pUuid, const char *pszString)
    180180{
    181181    /* check params */
  • trunk/src/VBox/Runtime/r3/win32/uuid-win32.cpp

    r1 r204  
    3939 * @param   pUuid           Where to store generated uuid.
    4040 */
    41 RTR3DECL(int)  RTUuidCreate(PRTUUID pUuid)
     41RTDECL(int)  RTUuidCreate(PRTUUID pUuid)
    4242{
    4343    /* check params */
     
    6262 * @param   pUuid           Where to store generated null uuid.
    6363 */
    64 RTR3DECL(int)  RTUuidClear(PRTUUID pUuid)
     64RTDECL(int)  RTUuidClear(PRTUUID pUuid)
    6565{
    6666    /* check params */
     
    8080 * @param   pUuid           uuid to check.
    8181 */
    82 RTR3DECL(int)  RTUuidIsNull(PCRTUUID pUuid)
     82RTDECL(int)  RTUuidIsNull(PCRTUUID pUuid)
    8383{
    8484    /* check params */
     
    100100 * @param   pUuid2          Second value to compare.
    101101 */
    102 RTR3DECL(int)  RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2)
     102RTDECL(int)  RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2)
    103103{
    104104    /* check params */
     
    121121 * @param   cchString       pszString buffer length, must be >= RTUUID_STR_LENGTH.
    122122 */
    123 RTR3DECL(int)  RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString)
     123RTDECL(int)  RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString)
    124124{
    125125    /* check params */
     
    177177 * @param   pszString       String with UUID text data.
    178178 */
    179 RTR3DECL(int)  RTUuidFromStr(PRTUUID pUuid, const char *pszString)
     179RTDECL(int)  RTUuidFromStr(PRTUUID pUuid, const char *pszString)
    180180{
    181181    /* check params */
Note: See TracChangeset for help on using the changeset viewer.

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