Changeset 46078 in vbox for trunk/include/iprt
- Timestamp:
- May 14, 2013 6:22:53 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/win/lazy-dbghelp.h
r46048 r46078 47 47 rc = RTPathAppend(szPath, sizeof(szPath), "Debugging Tools for Windows (x86)\\dbghelp.dll"); 48 48 #else 49 rc = RTPathAppend(szPath, sizeof(szPath), "Debugging Tools for Windows ( amd64)\\dbghelp.dll");49 rc = RTPathAppend(szPath, sizeof(szPath), "Debugging Tools for Windows (x64)\\dbghelp.dll"); 50 50 #endif 51 51 if (RTPathExists(szPath)) … … 60 60 } 61 61 62 RTLDRLAZY_MODULE (dbghelp, "dbghelp.dll");62 RTLDRLAZY_MODULE_EX(dbghelp, "dbghelp.dll", rtLdrLazyLoadDbgHelp); 63 63 64 64 RTLDRLAZY_FUNC(dbghelp, BOOL, WINAPI, SymInitialize, (HANDLE a1, PCWSTR a2, BOOL a3), (a1, a2, a3), FALSE);
Note:
See TracChangeset
for help on using the changeset viewer.