misc/libphysfs/lzma/CPP/Common/MyException.h
author unc0rr
Thu, 08 Mar 2018 23:28:58 +0100
changeset 13132 52178e8ffdfc
parent 12213 bb5522e88ab2
permissions -rw-r--r--
Fix new binds system for real

// Common/Exception.h

#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H

#include "MyWindows.h"

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

#endif