Files
easy7zip/CPP/Common/MyException.h
Tino Reichardt c3967fe27a Initialer Commit
2016-06-25 21:15:50 +02:00

15 lines
241 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