Changeset 46101 in vbox for trunk/include/iprt/dbg.h
- Timestamp:
- May 15, 2013 3:36:43 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dbg.h
r46083 r46101 972 972 973 973 /** 974 * Gets the name of the debug info file we're using. 975 * 976 * @returns Pointer to a read only string containing the filename, NULL if we 977 * don't use one. 978 * 979 * @param hDbgMod The module handle. 980 */ 981 RTDECL(const char *) RTDbgModDebugFile(RTDBGMOD hDbgMod); 982 983 /** 984 * Gets the image filename (as specified by the user). 985 * 986 * @returns Pointer to a read only string containing the filename. 987 * 988 * @param hDbgMod The module handle. 989 */ 990 RTDECL(const char *) RTDbgModImageFile(RTDBGMOD hDbgMod); 991 992 /** 993 * Gets the image filename actually used if it differs from RTDbgModImageFile. 994 * 995 * @returns Pointer to a read only string containing the filename, NULL if same 996 * as RTDBgModImageFile. 997 * 998 * @param hDbgMod The module handle. 999 */ 1000 RTDECL(const char *) RTDbgModImageFileUsed(RTDBGMOD hDbgMod); 1001 1002 /** 974 1003 * Converts an image relative address to a segment:offset address. 975 1004 *
Note:
See TracChangeset
for help on using the changeset viewer.