Nikolay Sivov : include: Add d3dx11 error codes.
Module: wine Branch: master Commit: 3fe57aae4bbf8c8298947c95185cbfc5a1ec025f URL: http://source.winehq.org/git/wine.git/?a=commit;h=3fe57aae4bbf8c8298947c9518... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Sun Nov 13 17:26:41 2016 -0600 include: Add d3dx11 error codes. Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Matteo Bruni <mbruni(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- include/d3dx11.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/include/d3dx11.h b/include/d3dx11.h index de54034..e155785 100644 --- a/include/d3dx11.h +++ b/include/d3dx11.h @@ -28,6 +28,23 @@ #include "d3d11.h" #include "d3dx11core.h" +#include "d3dx11async.h" #include "d3dx11tex.h" +#define _FACDD 0x876 +#define MAKE_DDHRESULT(code) MAKE_HRESULT(SEVERITY_ERROR, _FACDD, code) + +enum _D3DX11_ERR +{ + D3DX11_ERR_CANNOT_MODIFY_INDEX_BUFFER = MAKE_DDHRESULT(2900), + D3DX11_ERR_INVALID_MESH = MAKE_DDHRESULT(2901), + D3DX11_ERR_CANNOT_ATTR_SORT = MAKE_DDHRESULT(2902), + D3DX11_ERR_SKINNING_NOT_SUPPORTED = MAKE_DDHRESULT(2903), + D3DX11_ERR_TOO_MANY_INFLUENCES = MAKE_DDHRESULT(2904), + D3DX11_ERR_INVALID_DATA = MAKE_DDHRESULT(2905), + D3DX11_ERR_LOADED_MESH_HAS_NO_DATA = MAKE_DDHRESULT(2906), + D3DX11_ERR_DUPLICATE_NAMED_FRAGMENT = MAKE_DDHRESULT(2907), + D3DX11_ERR_CANNOT_REMOVE_LAST_ITEM = MAKE_DDHRESULT(2908) +}; + #endif
participants (1)
-
Alexandre Julliard