Mercurial > games > semicongine
comparison fuhtark_test/include/winapi/stierr.h @ 1500:91c8c3b7cbf0
add: futhark tests for generating vulkan api
| author | sam <sam@basx.dev> |
|---|---|
| date | Wed, 26 Nov 2025 21:36:48 +0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1499:1f58458b7ef7 | 1500:91c8c3b7cbf0 |
|---|---|
| 1 /** | |
| 2 * This file has no copyright assigned and is placed in the Public Domain. | |
| 3 * This file is part of the w64 mingw-runtime package. | |
| 4 * No warranty is given; refer to the file DISCLAIMER within this package. | |
| 5 */ | |
| 6 #ifndef _STIERR_ | |
| 7 #define _STIERR_ | |
| 8 | |
| 9 #define NT_SUCCESS(Status) ((NTSTATUS)(Status) >= 0) | |
| 10 #define NT_INFORMATION(Status) ((ULONG)(Status) >> 30==1) | |
| 11 #define NT_WARNING(Status) ((ULONG)(Status) >> 30==2) | |
| 12 #define NT_ERROR(Status) ((ULONG)(Status) >> 30==3) | |
| 13 | |
| 14 #define STI_OK S_OK | |
| 15 #define STI_ERROR_NO_ERROR STI_OK | |
| 16 #define STI_NOTCONNECTED S_FALSE | |
| 17 #define STI_CHANGENOEFFECT S_FALSE | |
| 18 #define STIERR_OLD_VERSION MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_OLD_WIN_VERSION) | |
| 19 #define STIERR_BETA_VERSION MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_RMODE_APP) | |
| 20 #define STIERR_BADDRIVER MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_BAD_DRIVER_LEVEL) | |
| 21 #define STIERR_DEVICENOTREG REGDB_E_CLASSNOTREG | |
| 22 #define STIERR_OBJECTNOTFOUND MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_FILE_NOT_FOUND) | |
| 23 #define STIERR_INVALID_PARAM E_INVALIDARG | |
| 24 #define STIERR_NOINTERFACE E_NOINTERFACE | |
| 25 #define STIERR_GENERIC E_FAIL | |
| 26 #define STIERR_OUTOFMEMORY E_OUTOFMEMORY | |
| 27 #define STIERR_UNSUPPORTED E_NOTIMPL | |
| 28 #define STIERR_NOT_INITIALIZED MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_NOT_READY) | |
| 29 #define STIERR_ALREADY_INITIALIZED MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_ALREADY_INITIALIZED) | |
| 30 #define STIERR_DEVICE_LOCKED MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_LOCK_VIOLATION) | |
| 31 #define STIERR_READONLY E_ACCESSDENIED | |
| 32 #define STIERR_NOTINITIALIZED E_ACCESSDENIED | |
| 33 #define STIERR_NEEDS_LOCK MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_NOT_LOCKED) | |
| 34 #define STIERR_SHARING_VIOLATION MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_SHARING_VIOLATION) | |
| 35 #define STIERR_HANDLEEXISTS MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_ALREADY_EXISTS) | |
| 36 #define STIERR_INVALID_DEVICE_NAME MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_INVALID_NAME) | |
| 37 #define STIERR_INVALID_HW_TYPE MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_INVALID_DATA) | |
| 38 #define STIERR_INVALID_HW_TYPE MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_INVALID_DATA) | |
| 39 #define STIERR_NOEVENTS MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_NO_MORE_ITEMS) | |
| 40 #define STIERR_DEVICE_NOTREADY MAKE_HRESULT(SEVERITY_ERROR,FACILITY_WIN32,ERROR_NOT_READY) | |
| 41 #endif |
