25 lines
519 B
C
25 lines
519 B
C
|
#ifndef CCRASHSTACK_H
|
||
|
#define CCRASHSTACK_H
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <QString>
|
||
|
|
||
|
class CCrashStack
|
||
|
{
|
||
|
private:
|
||
|
PEXCEPTION_POINTERS m_pException;
|
||
|
|
||
|
private:
|
||
|
QString GetModuleByRetAddr(PBYTE Ret_Addr, PBYTE & Module_Addr);
|
||
|
QString GetCallStack(PEXCEPTION_POINTERS pException);
|
||
|
QString GetVersionStr();
|
||
|
bool GetHardwareInaformation(QString &graphics_card, QString &sound_deivce);
|
||
|
|
||
|
public:
|
||
|
CCrashStack(PEXCEPTION_POINTERS pException);
|
||
|
|
||
|
QString GetExceptionInfo();
|
||
|
};
|
||
|
|
||
|
#endif // CCRASHSTACK_H
|