7zip/CPP/Common/MyException.h

15 lines
241 B
C
Raw Normal View History

2021-12-27 01:00:00 +01:00
// Common/Exception.h
2023-06-21 02:00:00 +02:00
#ifndef ZIP7_INC_COMMON_EXCEPTION_H
#define ZIP7_INC_COMMON_EXCEPTION_H
2021-12-27 01:00:00 +01:00
#include "MyWindows.h"
struct CSystemException
{
HRESULT ErrorCode;
CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
};
#endif