Changeset 20362 in vbox
- Timestamp:
- Jun 8, 2009 12:14:32 AM (16 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 57 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/assert.h
r18575 r20362 78 78 */ 79 79 80 __BEGIN_DECLS80 RT_BEGIN_DECLS 81 81 82 82 /** … … 164 164 /** @} */ 165 165 166 __END_DECLS166 RT_END_DECLS 167 167 168 168 /** @def RTAssertDebugBreak() … … 209 209 */ 210 210 #ifdef __GNUC__ 211 __BEGIN_DECLS211 RT_BEGIN_DECLS 212 212 #endif 213 213 extern int RTASSERTVAR[1]; 214 214 #ifdef __GNUC__ 215 __END_DECLS215 RT_END_DECLS 216 216 #endif 217 217 -
trunk/include/iprt/avl.h
r19756 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_rt_avl RTAvl - AVL Trees … … 869 869 /** @} */ 870 870 871 __END_DECLS871 RT_END_DECLS 872 872 873 873 #endif -
trunk/include/iprt/base64.h
r16765 r20362 33 33 #include <iprt/types.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 /** @defgroup grp_rt_base64 RTBase64 - Base64, MIME content transfer encoding. … … 118 118 /** @} */ 119 119 120 __END_DECLS120 RT_END_DECLS 121 121 122 122 #endif -
trunk/include/iprt/cache.h
r10848 r20362 40 40 #include <iprt/critsect.h> 41 41 42 __BEGIN_DECLS42 RT_BEGIN_DECLS 43 43 44 44 /** Protect the object requester against concurrent access from different threads. */ … … 143 143 RTDECL(int) RTCacheInsert(PRTOBJCACHE pCache, void *pObj); 144 144 145 __END_DECLS145 RT_END_DECLS 146 146 147 147 #endif /* __iprt_cache_h */ -
trunk/include/iprt/cdefs.h
r20358 r20362 54 54 * Used to end a block of function declarations which are shared 55 55 * between C and C++ program. 56 */57 58 /** @def __BEGIN_DECLS59 * @deprecated Use RT_BEGIN_DECLS60 */61 62 /** @def __END_DECLS63 * @deprecated Use RT_END_DECLS64 56 */ 65 57 -
trunk/include/iprt/cidr.h
r8295 r20362 39 39 * @{ 40 40 */ 41 __BEGIN_DECLS41 RT_BEGIN_DECLS 42 42 43 43 /** An IPv4 address. */ … … 60 60 RTDECL(int) RTCidrStrToIPv4(const char *pszAddress, PRTIPV4ADDR pNetwork, PRTIPV4ADDR pNetmask); 61 61 62 __END_DECLS62 RT_END_DECLS 63 63 /** @} */ 64 64 -
trunk/include/iprt/cpuset.h
r19302 r20362 36 36 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_rt_cpuset RTCpuSet - CPU Set … … 236 236 /** @} */ 237 237 238 __END_DECLS238 RT_END_DECLS 239 239 240 240 #endif -
trunk/include/iprt/crc32.h
r8245 r20362 35 35 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_crc32 RTCrc32 - CRC32 Calculation … … 80 80 /** @} */ 81 81 82 __END_DECLS82 RT_END_DECLS 83 83 84 84 #endif -
trunk/include/iprt/crc64.h
r8245 r20362 36 36 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_rt_crc64 RTCrc64 - CRC64 Calculation … … 81 81 /** @} */ 82 82 83 __END_DECLS83 RT_END_DECLS 84 84 85 85 #endif -
trunk/include/iprt/critsect.h
r20008 r20362 38 38 39 39 40 __BEGIN_DECLS40 RT_BEGIN_DECLS 41 41 42 42 /** @defgroup grp_rt_critsect RTCritSect - Critical Sections … … 309 309 /** @} */ 310 310 311 __END_DECLS312 313 #endif 314 311 RT_END_DECLS 312 313 #endif 314 -
trunk/include/iprt/dbg.h
r20361 r20362 26 26 #include <iprt/stdarg.h> 27 27 28 __BEGIN_DECLS28 RT_BEGIN_DECLS 29 29 30 30 /** @defgroup grp_rt_dbg RTDbg - Debugging Routines … … 475 475 /** @} */ 476 476 477 __END_DECLS477 RT_END_DECLS 478 478 479 479 #endif -
trunk/include/iprt/dir.h
r20111 r20362 38 38 39 39 40 __BEGIN_DECLS40 RT_BEGIN_DECLS 41 41 42 42 /** @defgroup grp_rt_dir RTDir - Directory Manipulation … … 373 373 /** @} */ 374 374 375 __END_DECLS375 RT_END_DECLS 376 376 377 377 #endif -
trunk/include/iprt/env.h
r8245 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_rt_env RTProc - Process Environment Strings … … 216 216 /** @} */ 217 217 218 __END_DECLS218 RT_END_DECLS 219 219 220 220 #endif -
trunk/include/iprt/err.h
r20015 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_rt_err RTErr - Status Codes … … 1025 1025 /** @} */ 1026 1026 1027 __END_DECLS1027 RT_END_DECLS 1028 1028 1029 1029 #endif -
trunk/include/iprt/file.h
r19562 r20362 37 37 #endif 38 38 39 __BEGIN_DECLS39 RT_BEGIN_DECLS 40 40 41 41 /** @defgroup grp_rt_fileio RTFile - File I/O … … 1147 1147 /** @} */ 1148 1148 1149 __END_DECLS1149 RT_END_DECLS 1150 1150 1151 1151 #endif -
trunk/include/iprt/fs.h
r14873 r20362 36 36 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_rt_fs RTFs - Filesystem and Volume … … 464 464 /** @} */ 465 465 466 __END_DECLS466 RT_END_DECLS 467 467 468 468 #endif /* ___iprt_fs_h */ -
trunk/include/iprt/getopt.h
r19951 r20362 35 35 #include <iprt/types.h> 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_getopt RTGetOpt - Command Line Parsing … … 321 321 /** @} */ 322 322 323 __END_DECLS323 RT_END_DECLS 324 324 325 325 #endif -
trunk/include/iprt/handletable.h
r10788 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_rt_handletable RTHandleTable - Handle Tables … … 241 241 /** @} */ 242 242 243 __END_DECLS243 RT_END_DECLS 244 244 245 245 -
trunk/include/iprt/heap.h
r8245 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** … … 170 170 RTDECL(void) RTHeapSimpleDump(RTHEAPSIMPLE Heap, PFNRTHEAPSIMPLEPRINTF pfnPrintf); 171 171 172 __END_DECLS172 RT_END_DECLS 173 173 174 174 #endif -
trunk/include/iprt/initterm.h
r19897 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_rt IPRT APIs … … 219 219 /** @} */ 220 220 221 __END_DECLS221 RT_END_DECLS 222 222 223 223 -
trunk/include/iprt/ldr.h
r17019 r20362 40 40 */ 41 41 42 __BEGIN_DECLS42 RT_BEGIN_DECLS 43 43 44 44 … … 303 303 /** @} */ 304 304 305 __END_DECLS305 RT_END_DECLS 306 306 307 307 /** @} */ -
trunk/include/iprt/linux/sysfs.h
r15644 r20362 37 37 38 38 39 __BEGIN_DECLS39 RT_BEGIN_DECLS 40 40 41 41 /** @defgroup grp_rt_mp RTLinuxSysfs - Linux sysfs … … 180 180 /** @} */ 181 181 182 __END_DECLS182 RT_END_DECLS 183 183 184 184 #endif -
trunk/include/iprt/localipc.h
r11725 r20362 40 40 41 41 42 __BEGIN_DECLS42 RT_BEGIN_DECLS 43 43 44 44 /** @defgroup grp_rt_localipc RTLocalIpc - Local IPC … … 273 273 274 274 /** @} */ 275 __END_DECLS275 RT_END_DECLS 276 276 277 277 #endif -
trunk/include/iprt/lock.h
r8245 r20362 33 33 #include <iprt/critsect.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 /** @defgroup grp_rt_lock RTLock - Scope-based Locking (C++). … … 140 140 /** @} */ 141 141 142 __END_DECLS142 RT_END_DECLS 143 143 144 144 #endif -
trunk/include/iprt/log.h
r19730 r20362 35 35 #include <iprt/stdarg.h> 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_log RTLog - Logging … … 1691 1691 #endif /* VBOX */ 1692 1692 1693 __END_DECLS1693 RT_END_DECLS 1694 1694 1695 1695 /** @} */ -
trunk/include/iprt/md5.h
r8245 r20362 54 54 typedef RTMD5CONTEXT *PRTMD5CONTEXT; 55 55 56 __BEGIN_DECLS56 RT_BEGIN_DECLS 57 57 58 58 /** … … 81 81 RTDECL(void) RTMd5Final(uint8_t pabDigest[RTMD5HASHSIZE], PRTMD5CONTEXT pCtx); 82 82 83 __END_DECLS83 RT_END_DECLS 84 84 85 85 /** @} */ -
trunk/include/iprt/mem.h
r20360 r20362 49 49 */ 50 50 51 __BEGIN_DECLS51 RT_BEGIN_DECLS 52 52 53 53 /** @def RTMEM_ALIGNMENT … … 366 366 /** @} */ 367 367 368 __END_DECLS368 RT_END_DECLS 369 369 370 370 -
trunk/include/iprt/memobj.h
r15721 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_rt_memobj RTMemObj - Memory Object Manipulation (Ring-0) … … 304 304 /** @} */ 305 305 306 __END_DECLS306 RT_END_DECLS 307 307 308 308 #endif -
trunk/include/iprt/mp.h
r19390 r20362 35 35 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_mp RTMp - Multiprocessor … … 341 341 /** @} */ 342 342 343 __END_DECLS343 RT_END_DECLS 344 344 345 345 #endif -
trunk/include/iprt/net.h
r17848 r20362 36 36 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_rt_net RTNet - Network Protocols … … 682 682 /** @} */ 683 683 684 __END_DECLS684 RT_END_DECLS 685 685 686 686 #endif -
trunk/include/iprt/nocrt/amd64/fenv.h
r8245 r20362 98 98 #define _SSE_EMASK_SHIFT 7 99 99 100 __BEGIN_DECLS100 RT_BEGIN_DECLS 101 101 102 102 /* Default floating-point environment */ … … 221 221 } 222 222 223 __END_DECLS223 RT_END_DECLS 224 224 225 225 #ifndef RT_WITHOUT_NOCRT_WRAPPERS -
trunk/include/iprt/nocrt/math.h
r8245 r20362 210 210 * as __pure2. In C99, FENV_ACCESS affects the purity of these functions. 211 211 */ 212 __BEGIN_DECLS212 RT_BEGIN_DECLS 213 213 /* 214 214 * ANSI/POSIX … … 559 559 long double RT_NOCRT(gammal)(long double); 560 560 #endif 561 __END_DECLS561 RT_END_DECLS 562 562 563 563 -
trunk/include/iprt/nocrt/setjmp.h
r8245 r20362 33 33 #include <iprt/types.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 #ifdef RT_ARCH_AMD64 … … 50 50 #endif 51 51 52 __END_DECLS52 RT_END_DECLS 53 53 54 54 #endif -
trunk/include/iprt/nocrt/stdlib.h
r8245 r20362 33 33 #include <iprt/types.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 38 __END_DECLS38 RT_END_DECLS 39 39 40 40 #endif -
trunk/include/iprt/nocrt/string.h
r10137 r20362 33 33 #include <iprt/types.h> 34 34 35 __BEGIN_DECLS35 RT_BEGIN_DECLS 36 36 37 37 void * RT_NOCRT(memchr)(const void *pv, int ch, size_t cb); … … 80 80 #endif 81 81 82 __END_DECLS82 RT_END_DECLS 83 83 84 84 #endif -
trunk/include/iprt/nocrt/x86/fenv.h
r8245 r20362 121 121 #endif 122 122 123 __BEGIN_DECLS123 RT_BEGIN_DECLS 124 124 125 125 /* Default floating-point environment */ … … 260 260 } 261 261 262 __END_DECLS262 RT_END_DECLS 263 263 264 264 #ifndef RT_WIHTOUT_NOCRT_WRAPPERS … … 273 273 # define feenableexcept RT_NOCRT(feenableexcept) 274 274 # define fedisableexcept RT_NOCRT(fedisableexcept) 275 #endif 275 #endif 276 276 277 277 #endif /* !__iprt_nocrt_x86_fenv_h__ */ -
trunk/include/iprt/once.h
r19896 r20362 35 35 #include <iprt/err.h> 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_once RTOnce - Execute Once … … 104 104 /** @} */ 105 105 106 __END_DECLS106 RT_END_DECLS 107 107 108 108 #endif -
trunk/include/iprt/path.h
r20018 r20362 39 39 40 40 41 __BEGIN_DECLS41 RT_BEGIN_DECLS 42 42 43 43 /** @defgroup grp_rt_path RTPath - Path Manipulation … … 599 599 /** @} */ 600 600 601 __END_DECLS601 RT_END_DECLS 602 602 603 603 #endif -
trunk/include/iprt/power.h
r13478 r20362 35 35 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_power RTPower - Power management … … 111 111 /** @} */ 112 112 113 __END_DECLS113 RT_END_DECLS 114 114 115 115 #endif -
trunk/include/iprt/process.h
r17018 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_rt_process RTProc - Process Management … … 266 266 /** @} */ 267 267 268 __END_DECLS268 RT_END_DECLS 269 269 270 270 #endif -
trunk/include/iprt/rand.h
r11558 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_rt_rand RTRand - Random Numbers and Byte Streams … … 314 314 /** @} */ 315 315 316 __END_DECLS316 RT_END_DECLS 317 317 318 318 -
trunk/include/iprt/req.h
r13075 r20362 36 36 #include <iprt/stdarg.h> 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_rt_req RTReq - Request Packet Management … … 369 369 /** @} */ 370 370 371 __END_DECLS371 RT_END_DECLS 372 372 373 373 #endif -
trunk/include/iprt/s3.h
r20043 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @group grp_rt_s3 RTS3 - Simple Storage Service (S3) Communication API … … 269 269 /** @} */ 270 270 271 __END_DECLS271 RT_END_DECLS 272 272 273 273 #endif -
trunk/include/iprt/semaphore.h
r12874 r20362 35 35 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_sems RTSem - Semaphores … … 527 527 /** @} */ 528 528 529 __END_DECLS529 RT_END_DECLS 530 530 531 531 #endif -
trunk/include/iprt/spinlock.h
r9212 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 … … 155 155 /** @} */ 156 156 157 __END_DECLS157 RT_END_DECLS 158 158 159 159 #endif -
trunk/include/iprt/stream.h
r19543 r20362 35 35 #include <iprt/stdarg.h> 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_stream RTStrm - File Streams … … 259 259 /** @} */ 260 260 261 __END_DECLS261 RT_END_DECLS 262 262 263 263 #endif -
trunk/include/iprt/string.h
r19942 r20362 66 66 */ 67 67 #if defined(RT_OS_DARWIN) && defined(KERNEL) 68 __BEGIN_DECLS68 RT_BEGIN_DECLS 69 69 void *memchr(const void *pv, int ch, size_t cb); 70 70 char *strpbrk(const char *pszStr, const char *pszChars); 71 __END_DECLS71 RT_END_DECLS 72 72 #endif 73 73 … … 112 112 */ 113 113 114 __BEGIN_DECLS114 RT_BEGIN_DECLS 115 115 116 116 … … 1884 1884 /** @} */ 1885 1885 1886 __END_DECLS1886 RT_END_DECLS 1887 1887 1888 1888 /** @} */ -
trunk/include/iprt/system.h
r19508 r20362 35 35 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_system RTSystem - System Information … … 143 143 /** @} */ 144 144 145 __END_DECLS145 RT_END_DECLS 146 146 147 147 #endif -
trunk/include/iprt/table.h
r8245 r20362 38 38 */ 39 39 40 __BEGIN_DECLS40 RT_BEGIN_DECLS 41 41 42 42 /** Pointer to an allocator. */ … … 711 711 } 712 712 713 __END_DECLS713 RT_END_DECLS 714 714 715 715 /** @} */ -
trunk/include/iprt/tcp.h
r8245 r20362 40 40 41 41 42 __BEGIN_DECLS42 RT_BEGIN_DECLS 43 43 44 44 /** @defgroup grp_rt_tcp RTTcp - TCP/IP … … 218 218 219 219 /** @} */ 220 __END_DECLS220 RT_END_DECLS 221 221 222 222 #endif -
trunk/include/iprt/test.h
r20109 r20362 35 35 #include <iprt/stdarg.h> 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_test RTTest - Testcase Framework. … … 908 908 /** @} */ 909 909 910 __END_DECLS910 RT_END_DECLS 911 911 912 912 #endif -
trunk/include/iprt/thread.h
r20124 r20362 41 41 42 42 43 __BEGIN_DECLS43 RT_BEGIN_DECLS 44 44 45 45 /** @defgroup grp_rt_thread RTThread - Thread Management … … 691 691 /** @} */ 692 692 693 __END_DECLS693 RT_END_DECLS 694 694 695 695 #endif -
trunk/include/iprt/time.h
r19542 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_rt_time RTTime - Time … … 933 933 /** @} */ 934 934 935 __END_DECLS935 RT_END_DECLS 936 936 937 937 #endif -
trunk/include/iprt/timer.h
r10944 r20362 36 36 37 37 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 40 40 /** @defgroup grp_rt_timer RTTimer - Timer … … 312 312 /** @} */ 313 313 314 __END_DECLS314 RT_END_DECLS 315 315 316 316 #endif -
trunk/include/iprt/uni.h
r8245 r20362 48 48 #endif 49 49 50 __BEGIN_DECLS50 RT_BEGIN_DECLS 51 51 52 52 … … 400 400 401 401 402 __END_DECLS402 RT_END_DECLS 403 403 /** @} */ 404 404 -
trunk/include/iprt/uuid.h
r19198 r20362 34 34 #include <iprt/types.h> 35 35 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 38 38 /** @defgroup grp_rt_uuid RTUuid - Universally Unique Identifiers … … 170 170 /** @} */ 171 171 172 __END_DECLS172 RT_END_DECLS 173 173 174 174 #endif -
trunk/include/iprt/zip.h
r8245 r20362 35 35 36 36 37 __BEGIN_DECLS37 RT_BEGIN_DECLS 38 38 39 39 /** @defgroup grp_rt_zip RTZip - Compression … … 179 179 /** @} */ 180 180 181 __END_DECLS181 RT_END_DECLS 182 182 183 183 #endif
Note:
See TracChangeset
for help on using the changeset viewer.