mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 08:26:42 +00:00 
			
		
		
		
	Remove file name naming convention check exceptions (#7249) Closes #7249 See merge request OpenMW/openmw!4551
		
			
				
	
	
		
			58 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef OPENMW_COMPONENTS_CRASHCATCHER_WINDOWSCRASHSHM_HPP
 | |
| #define OPENMW_COMPONENTS_CRASHCATCHER_WINDOWSCRASHSHM_HPP
 | |
| 
 | |
| #include <components/misc/windows.hpp>
 | |
| 
 | |
| namespace Crash
 | |
| {
 | |
| 
 | |
|     // Used to communicate between the app and the monitor, fields are is overwritten with each event.
 | |
|     static constexpr const int MAX_LONG_PATH = 0x7fff;
 | |
|     static constexpr const int MAX_FILENAME = 0xff;
 | |
| 
 | |
|     struct CrashSHM
 | |
|     {
 | |
|         enum class Event
 | |
|         {
 | |
|             None,
 | |
|             Startup,
 | |
|             Crashed,
 | |
|             Shutdown
 | |
|         };
 | |
| 
 | |
|         Event mEvent;
 | |
| 
 | |
|         enum class Status
 | |
|         {
 | |
|             Uninitialised,
 | |
|             Monitoring,
 | |
|             Dumping,
 | |
|             DumpedSuccessfully,
 | |
|             FailedDumping
 | |
|         };
 | |
| 
 | |
|         Status mMonitorStatus;
 | |
| 
 | |
|         struct Startup
 | |
|         {
 | |
|             HANDLE mAppProcessHandle;
 | |
|             DWORD mAppMainThreadId;
 | |
|             HANDLE mSignalApp;
 | |
|             HANDLE mSignalMonitor;
 | |
|             HANDLE mShmMutex;
 | |
|             char mDumpDirectoryPath[MAX_LONG_PATH];
 | |
|             char mCrashDumpFileName[MAX_FILENAME];
 | |
|             char mFreezeDumpFileName[MAX_FILENAME];
 | |
|         } mStartup;
 | |
| 
 | |
|         struct Crashed
 | |
|         {
 | |
|             DWORD mThreadId;
 | |
|             CONTEXT mContext;
 | |
|             EXCEPTION_RECORD mExceptionRecord;
 | |
|         } mCrashed;
 | |
|     };
 | |
| 
 | |
| } // namespace Crash
 | |
| 
 | |
| #endif
 |