misc/libphysfs/lzma/CPP/Common/MyException.h
author Wuzzy <almikes@aol.com>
Tue, 26 Sep 2017 16:07:44 +0200
changeset 12536 e54039ea3934
parent 12213 bb5522e88ab2
permissions -rw-r--r--
New Lua API function: GetTeamStats, to get team stats

// Common/Exception.h

#ifndef __COMMON_EXCEPTION_H
#define __COMMON_EXCEPTION_H

#include "MyWindows.h"

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

#endif