This is extract from #211 that enables compilation with GCC. With #211 now in the state of bitrot, I would rather try approaching it in smaller steps that can be hopefully merged quicker, even if it does not provide full support for all the features #211 provided. This will _compile_ correctly with my (@janisozaur) GCC, but clang is more picky about flexible array members and refuses to compile it yet. I will extract remaining parts of #211 in future PRs. I marked @fwcd as author, as he did most of the work in #211.
26 lines
507 B
C
26 lines
507 B
C
#pragma once
|
|
|
|
#if defined(_WIN32) && defined(_MSC_VER)
|
|
|
|
#include <winerror.h>
|
|
|
|
#else
|
|
|
|
#include "Ratpack/CalcErr.h"
|
|
|
|
#define E_ACCESSDENIED 0x80070005
|
|
#define E_FAIL 0x80004005
|
|
#define E_INVALIDARG 0x80070057
|
|
#define E_OUTOFMEMORY 0x8007000E
|
|
#define E_POINTER 0x80004003
|
|
#define E_UNEXPECTED 0x8000FFFF
|
|
#define E_BOUNDS 0x8000000B
|
|
#define S_OK 0x0
|
|
#define S_FALSE 0x1
|
|
|
|
#define SUCCEEDED(hr) (((ResultCode)(hr)) >= 0)
|
|
#define FAILED(hr) (((ResultCode)(hr)) < 0)
|
|
#define SCODE_CODE(sc) ((sc) & 0xFFFF)
|
|
|
|
#endif
|