misc/libphysfs/lzma/CPP/Common/MyException.h
author alfadur
Wed, 04 Jul 2018 12:57:05 +0300
changeset 13440 30ee161d85d0
parent 12213 bb5522e88ab2
permissions -rw-r--r--
Fix AddTeam message serialization

// Common/Exception.h

#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H

#include "MyWindows.h"

struct CSystemException
{
  HRESULT ErrorCode;
  CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
};

#endif