Files
easy7zip/CPP/Common/MyException.h
Igor Pavlov fd8b1d78b4 4.48 beta
2016-05-28 00:15:52 +01:00

15 lines
227 B
C
Executable File

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