misc/libphysfs/lzma/CPP/Common/MyException.h
author alfadur
Sat, 21 Jul 2018 02:13:55 +0300
changeset 13534 662f7df89d06
parent 12218 bb5522e88ab2
permissions -rw-r--r--
Implement room config export

// Common/Exception.h

#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H

#include "MyWindows.h"

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

#endif