7zip/CPP/Common/MyException.h
Igor Pavlov 5b39dc76f1 23.01
2023-12-17 14:59:19 +05:00

15 lines
241 B
C

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