Changeset 52 for trunk/include/k/kLdr.h


Ignore:
Timestamp:
Jul 9, 2013, 7:03:37 PM (12 years ago)
Author:
bird
Message:

Added KLDRMOD_OPEN_FLAGS_FOR_INFO and fixed more mach-o issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/k/kLdr.h

    r41 r52  
    589589/** @} */
    590590
     591/** @name Module Open Flags
     592 * @{ */
     593/** Indicates that we won't be loading the module, we're just getting
     594 *  information (like symbols and line numbers) out of it. */
     595#define KLDRMOD_OPEN_FLAGS_FOR_INFO     K_BIT32(0)
     596/** Mask of valid flags.    */
     597#define KLDRMOD_OPEN_FLAGS_VALID_MASK   KU32_C(0x00000001)
     598/** @} */
    591599
    592600int     kLdrModOpen(const char *pszFilename, KU32 fFlags, KCPUARCH enmCpuArch, PPKLDRMOD ppMod);
Note: See TracChangeset for help on using the changeset viewer.