d3d9/tests: AMD GPUs sample the border color of cube textures.
[wine.git] / include / featurestagingapi.h
blob9a9237eb13c2bdbd4628393122a1d455bd2f554b
1 /*
2 * Copyright (C) 2021 Alex Henrie
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 _FEATURESTAGINGAPI_H_
20 #define _FEATURESTAGINGAPI_H_
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
26 DECLARE_HANDLE(FEATURE_STATE_CHANGE_SUBSCRIPTION);
28 typedef void WINAPI FEATURE_STATE_CHANGE_CALLBACK(void*);
30 typedef enum FEATURE_CHANGE_TIME
32 FEATURE_CHANGE_TIME_READ,
33 FEATURE_CHANGE_TIME_MODULE_RELOAD,
34 FEATURE_CHANGE_TIME_SESSION,
35 FEATURE_CHANGE_TIME_REBOOT
36 } FEATURE_CHANGE_TIME;
38 typedef enum FEATURE_ENABLED_STATE
40 FEATURE_ENABLED_STATE_DEFAULT,
41 FEATURE_ENABLED_STATE_DISABLED,
42 FEATURE_ENABLED_STATE_ENABLED
43 } FEATURE_ENABLED_STATE;
45 #ifdef __cplusplus
47 #endif
49 #endif