Changeset 20374 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Jun 8, 2009 12:43:21 AM (15 years ago)
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r20364 r20374 27 27 #include "internal/magics.h" 28 28 29 RT_ BEGIN_DECLS29 RT_C_DECLS_BEGIN 30 30 31 31 /** @defgroup grp_rt_dbgmod RTDbgMod - Debug Module Interperter … … 248 248 /** @} */ 249 249 250 RT_ END_DECLS250 RT_C_DECLS_END 251 251 252 252 #endif -
trunk/src/VBox/Runtime/include/internal/file.h
r20364 r20374 34 34 #include <iprt/file.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 /** … … 48 48 int rtFileRecalcAndValidateFlags(unsigned *pfOpen); 49 49 50 RT_ END_DECLS50 RT_C_DECLS_END 51 51 52 52 #endif -
trunk/src/VBox/Runtime/include/internal/fileaio.h
r20364 r20374 109 109 110 110 111 RT_ BEGIN_DECLS111 RT_C_DECLS_BEGIN 112 112 113 RT_ END_DECLS113 RT_C_DECLS_END 114 114 115 115 #endif -
trunk/src/VBox/Runtime/include/internal/fs.h
r20364 r20374 37 37 #endif 38 38 39 RT_ BEGIN_DECLS39 RT_C_DECLS_BEGIN 40 40 41 41 RTFMODE rtFsModeFromDos(RTFMODE fMode, const char *pszName, size_t cbName); … … 58 58 #endif 59 59 60 RT_ END_DECLS60 RT_C_DECLS_END 61 61 62 62 #endif -
trunk/src/VBox/Runtime/include/internal/initterm.h
r20364 r20374 34 34 #include <iprt/cdefs.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 #ifdef IN_RING0 … … 52 52 #endif /* IN_RING0 */ 53 53 54 RT_ END_DECLS54 RT_C_DECLS_END 55 55 56 56 #endif -
trunk/src/VBox/Runtime/include/internal/ldr.h
r20364 r20374 35 35 #include "internal/magics.h" 36 36 37 RT_ BEGIN_DECLS37 RT_C_DECLS_BEGIN 38 38 39 39 … … 379 379 380 380 381 RT_ END_DECLS381 RT_C_DECLS_END 382 382 383 383 #endif -
trunk/src/VBox/Runtime/include/internal/memobj.h
r20364 r20374 36 36 #include "internal/magics.h" 37 37 38 RT_ BEGIN_DECLS38 RT_C_DECLS_BEGIN 39 39 40 40 /** @defgroup grp_rt_memobj_int Internals. … … 427 427 /** @} */ 428 428 429 RT_ END_DECLS429 RT_C_DECLS_END 430 430 431 431 #endif -
trunk/src/VBox/Runtime/include/internal/path.h
r20364 r20374 35 35 #include <iprt/param.h> 36 36 37 RT_ BEGIN_DECLS37 RT_C_DECLS_BEGIN 38 38 39 39 #if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS) … … 109 109 110 110 111 RT_ END_DECLS111 RT_C_DECLS_END 112 112 113 113 #endif -
trunk/src/VBox/Runtime/include/internal/process.h
r20364 r20374 35 35 #include <iprt/param.h> 36 36 37 RT_ BEGIN_DECLS37 RT_C_DECLS_BEGIN 38 38 39 39 extern RTPROCESS g_ProcessSelf; … … 67 67 DECLHIDDEN(int) rtProcInitExePath(char *pszPath, size_t cchPath); 68 68 69 RT_ END_DECLS69 RT_C_DECLS_END 70 70 71 71 #endif -
trunk/src/VBox/Runtime/include/internal/rand.h
r20364 r20374 161 161 162 162 163 RT_ BEGIN_DECLS163 RT_C_DECLS_BEGIN 164 164 165 165 /** … … 190 190 DECLCALLBACK(int) rtRandAdvDefaultDestroy(PRTRANDINT pThis); 191 191 192 RT_ END_DECLS192 RT_C_DECLS_END 193 193 194 194 #endif -
trunk/src/VBox/Runtime/include/internal/sched.h
r20364 r20374 36 36 #include "internal/thread.h" 37 37 38 RT_ BEGIN_DECLS38 RT_C_DECLS_BEGIN 39 39 40 40 /** … … 47 47 int rtSchedNativeCalcDefaultPriority(RTTHREADTYPE enmType); 48 48 49 RT_ END_DECLS49 RT_C_DECLS_END 50 50 51 51 #endif -
trunk/src/VBox/Runtime/include/internal/string.h
r20364 r20374 34 34 #include <iprt/string.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 /** @def RTSTR_STRICT … … 58 58 size_t rtstrFormatType(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, const char **ppszFormat, va_list *pArgs, int cchWidth, int cchPrecision, unsigned fFlags, char chArgSize); 59 59 60 RT_ END_DECLS60 RT_C_DECLS_END 61 61 62 62 #endif -
trunk/src/VBox/Runtime/include/internal/thread.h
r20364 r20374 41 41 #include "internal/magics.h" 42 42 43 RT_ BEGIN_DECLS43 RT_C_DECLS_BEGIN 44 44 45 45 … … 208 208 #endif 209 209 210 RT_ END_DECLS211 212 #endif 210 RT_C_DECLS_END 211 212 #endif -
trunk/src/VBox/Runtime/include/internal/time.h
r20364 r20374 34 34 #include <iprt/types.h> 35 35 36 RT_ BEGIN_DECLS36 RT_C_DECLS_BEGIN 37 37 38 38 #if defined(IN_RING3) || defined(IN_RC) … … 44 44 #endif 45 45 46 RT_ END_DECLS46 RT_C_DECLS_END 47 47 48 48 #endif
Note:
See TracChangeset
for help on using the changeset viewer.