mirror of
https://github.com/mamedev/mame.git
synced 2025-04-02 10:52:13 -04:00
14 lines
241 B
C
14 lines
241 B
C
// Common/Exception.h
|
|
|
|
#ifndef ZIP7_INC_COMMON_EXCEPTION_H
|
|
#define ZIP7_INC_COMMON_EXCEPTION_H
|
|
|
|
#include "MyWindows.h"
|
|
|
|
struct CSystemException
|
|
{
|
|
HRESULT ErrorCode;
|
|
CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
|
|
};
|
|
|
|
#endif
|