Files
Aaru.Compression.Native/3rdparty/lzma-21.03beta/CPP/Common/MyException.h
2021-10-19 21:27:23 +01:00

15 lines
227 B
C

// Common/Exception.h
#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H
#include "MyWindows.h"
struct CSystemException
{
HRESULT ErrorCode;
CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
};
#endif