Changeset 57942 in vbox
- Timestamp:
- Sep 29, 2015 1:45:46 PM (9 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
-
initterm.h (modified) (1 diff)
-
ldrlazy.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/initterm.h
r57926 r57942 36 36 */ 37 37 38 /** @defgroup grp_rt_initterm Init / Term 38 /** @defgroup grp_rt_initterm RTInit/RTTerm - Initialization and Termination 39 * 40 * APIs for initializing and terminating the IPRT, optionally it can also 41 * convert input arguments to UTF-8 (in ring-3). 42 * 43 * @sa RTOnce, RTOnceEx. 44 * 39 45 * @{ 40 46 */ -
trunk/include/iprt/ldrlazy.h
r56291 r57942 29 29 #include <iprt/ldr.h> 30 30 31 /** @defgroup grp_rt_ldrlazy Lazy shared library linking.31 /** @defgroup grp_rt_ldrlazy RTLdrLazy - Lazy shared library linking. 32 32 * @ingroup grp_rt 33 33 * 34 * This is a set of macros which will produce code for dynamically loading and 35 * resolving symbols in shared libraries (DLLs). 36 * 37 * There is an assembly language alternative to this that only requires writing 38 * a list of symbols in a format similar to what the microsoft linkers take as 39 * input when producing DLLs and import libraries. That is probably preferable 40 * over this code. See src/bldprog/VBoxDef2LazyLoad.cpp. 34 41 * 35 42 * @{
Note:
See TracChangeset
for help on using the changeset viewer.

