Changeset 53020 in vbox for trunk/include/iprt
- Timestamp:
- Oct 10, 2014 9:29:46 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 96497
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r52495 r53020 4 4 5 5 /* 6 * Copyright (C) 2006-201 2Oracle Corporation6 * Copyright (C) 2006-2014 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 79 79 * FreeBSD declares uint64_t and int64_t wrong (long unsigned and long int 80 80 * though they need to be long long unsigned and long long int). These 81 * defines conflict with our decl eration in stdint.h. Adding the defines81 * defines conflict with our declaration in stdint.h. Adding the defines 82 82 * below omits the definitions in the system header. 83 83 */ … … 1581 1581 /** Pointer to a public key encryption schema handle. */ 1582 1582 typedef RTCRPKIXENCRYPTION *PRTCRPKIXENCRYPTION; 1583 /** NIL public kkey encryption schema handle */1583 /** NIL public key encryption schema handle */ 1584 1584 #define NIL_RTCRPKIXENCRYPTION (0) 1585 1585 … … 1588 1588 /** Pointer to a public key signature schema handle. */ 1589 1589 typedef RTCRPKIXSIGNATURE *PRTCRPKIXSIGNATURE; 1590 /** NIL public kkey signature schema handle */1590 /** NIL public key signature schema handle */ 1591 1591 #define NIL_RTCRPKIXSIGNATURE (0) 1592 1592 … … 1788 1788 */ 1789 1789 typedef struct RTTRACEBUFINT *RTTRACEBUF; 1790 /** Poin er to a trace buffer handle. */1790 /** Pointer to a trace buffer handle. */ 1791 1791 typedef RTTRACEBUF *PRTTRACEBUF; 1792 1792 /** Nil trace buffer handle. */ … … 1841 1841 /** A CPU set. 1842 1842 * @note Treat this as an opaque type and always use RTCpuSet* for 1843 * man upulating it. */1843 * manipulating it. */ 1844 1844 typedef struct RTCPUSET 1845 1845 { … … 1872 1872 /** Pointer to a random number generator handle. */ 1873 1873 typedef RTRAND *PRTRAND; 1874 /** NIL random number gen rator handle value. */1874 /** NIL random number generator handle value. */ 1875 1875 #define NIL_RTRAND ((RTRAND)0) 1876 1876 … … 2315 2315 * The structure definition is found in iprt/lockvalidator.h. */ 2316 2316 typedef struct RTLOCKVALRECSHRD *PRTLOCKVALRECSHRD; 2317 /** Pointer to a lock validator source po isition.2317 /** Pointer to a lock validator source position. 2318 2318 * The structure definition is found in iprt/lockvalidator.h. */ 2319 2319 typedef struct RTLOCKVALSRCPOS *PRTLOCKVALSRCPOS; 2320 /** Pointer to a const lock validator source po isition.2320 /** Pointer to a const lock validator source position. 2321 2321 * The structure definition is found in iprt/lockvalidator.h. */ 2322 2322 typedef struct RTLOCKVALSRCPOS const *PCRTLOCKVALSRCPOS;
Note:
See TracChangeset
for help on using the changeset viewer.