d3d11/tests: Add test for 3D texture interfaces.
[wine.git] / include / webservices.h
blob954fd492cd90b87ce60eb1c89acced2241f3f777
1 /*
2 * Copyright 2015 Nikolay Sivov for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __WINE_WEBSERVICES_H
20 #define __WINE_WEBSERVICES_H
22 #ifdef __cplusplus
23 extern "C" {
24 #endif /* __cplusplus */
26 typedef struct _WS_ERROR WS_ERROR;
28 typedef enum {
29 WS_ERROR_PROPERTY_STRING_COUNT,
30 WS_ERROR_PROPERTY_ORIGINAL_ERROR_CODE,
31 WS_ERROR_PROPERTY_LANGID
32 } WS_ERROR_PROPERTY_ID;
34 typedef struct _WS_ERROR_PROPERTY {
35 WS_ERROR_PROPERTY_ID id;
36 void *value;
37 ULONG valueSize;
38 } WS_ERROR_PROPERTY;
40 HRESULT WINAPI WsCreateError(const WS_ERROR_PROPERTY*, ULONG, WS_ERROR**);
42 #ifdef __cplusplus
44 #endif /* __cplusplus */
46 #endif /* __WINE_WEBSERVICES_H */