Changeset 53525 in vbox
- Timestamp:
- Dec 12, 2014 3:32:30 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97266
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/initterm.h
r48681 r53525 109 109 110 110 /** 111 * Is IPRT succesfully initialized? 112 * 113 * @returns true/false. 114 */ 115 RTR3DECL(bool) RTR3InitIsInitialized(void); 116 117 /** 111 118 * Are we running in unobtrusive mode? 112 119 * @returns true/false. -
trunk/include/iprt/mangling.h
r53010 r53525 1159 1159 # define RTR3InitExeNoArguments RT_MANGLER(RTR3InitExeNoArguments) 1160 1160 # define RTR3InitEx RT_MANGLER(RTR3InitEx) 1161 # define RTR3InitIsInitialized RT_MANGLER(RTR3InitIsInitialized) 1161 1162 # define RTR3InitIsUnobtrusive RT_MANGLER(RTR3InitIsUnobtrusive) 1162 1163 # define rtR3MemAlloc RT_MANGLER(rtR3MemAlloc) -
trunk/src/VBox/Runtime/r3/init.cpp
r48935 r53525 641 641 } 642 642 643 644 RTR3DECL(bool) RTR3InitIsInitialized(void) 645 { 646 return g_cUsers >= 1 && !g_fInitializing; 647 } 648 649 643 650 RTR3DECL(bool) RTR3InitIsUnobtrusive(void) 644 651 { 645 652 return RT_BOOL(g_fInitFlags & RTR3INIT_FLAGS_UNOBTRUSIVE); 646 653 } 654 647 655 648 656 #if 0 /** @todo implement RTR3Term. */
Note:
See TracChangeset
for help on using the changeset viewer.