Changeset 56533 in vbox for trunk/include/VBox/refentry.h
- Timestamp:
- Jun 18, 2015 6:15:51 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101155
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/refentry.h
r56231 r56533 43 43 #define REFENTRY_NBSP '\b' 44 44 45 /** @name REFENTRYSTR_SCOPE_XXX - Common string scoping .45 /** @name REFENTRYSTR_SCOPE_XXX - Common string scoping and flags. 46 46 * @{ */ 47 /** Same scope as previous string table entry. */ 47 /** Same scope as previous string table entry, flags are reset and can be 48 * ORed in. */ 48 49 #define REFENTRYSTR_SCOPE_SAME UINT64_C(0) 49 50 /** Global scope. */ 50 #define REFENTRYSTR_SCOPE_GLOBAL UINT64_MAX 51 #define REFENTRYSTR_SCOPE_GLOBAL UINT64_C(0x00ffffffffffffff) 52 /** Scope mask. */ 53 #define REFENTRYSTR_SCOPE_MASK UINT64_C(0x00ffffffffffffff) 54 /** Flags mask. */ 55 #define REFENTRYSTR_FLAGS_MASK UINT64_C(0xff00000000000000) 56 /** Command synopsis, special hanging indent rules applies. */ 57 #define REFENTRYSTR_FLAGS_SYNOPSIS RT_BIT_64(63) 51 58 /** @} */ 52 59
Note:
See TracChangeset
for help on using the changeset viewer.