mirror of
https://github.com/love2d/megasource.git
synced 2026-08-17 19:24:09 +02:00
15 lines
227 B
C
15 lines
227 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
|