| 12345678910111213141516171819202122232425 |
- // CrashFileNames.h Version 1.4
- //
- // Author: Hans Dietrich
- // hdietrich2@hotmail.com
- //
- // This software is released into the public domain.
- // You are free to use it in any way you like, except
- // that you may not sell this source code.
- //
- // This software is provided "as is" with no expressed
- // or implied warranty. I accept no liability for any
- // damage or loss of business that this software may cause.
- //
- ///////////////////////////////////////////////////////////////////////////////
- #ifndef CRASHFILENAMES_H
- #define CRASHFILENAMES_H
- #define XCRASHREPORT_MINI_DUMP_FILE _T("CRASH.DMP")
- #define XCRASHREPORT_ERROR_LOG_FILE _T("ERRORLOG.TXT")
- //#define XCRASHREPORT_REGISTRY_DUMP_FILE _T("REGISTRY.TXT")
- #define XCRASHREPORT_CRASH_REPORT_APP _T("CrashReport.bat")
- #endif //CRASHFILENAMES_H
|