d3d9/tests: AMD GPUs sample the border color of cube textures.
[wine.git] / include / appnotify.h
blob882b0342afba02996b7011ea41de699a51e54aa9
1 /*
2 * Copyright (C) 2023 Mohamad Al-Jaf
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_APISET_PSMAPPNOTIFY_H_
20 #define _WINE_APISET_PSMAPPNOTIFY_H_
22 #include <windows.h>
24 #ifdef _CONTRACT_GEN
25 #define PSM_APP_API_HOST
26 #endif
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
32 #if defined(PSM_APP_API_HOST)
33 #define APICONTRACT
34 #else
35 #define APICONTRACT DECLSPEC_IMPORT
36 #endif
38 typedef void (__cdecl *PAPPSTATE_CHANGE_ROUTINE)(BOOLEAN quiesced, void *context);
40 typedef struct _APPSTATE_REGISTRATION *PAPPSTATE_REGISTRATION;
42 APICONTRACT ULONG NTAPI RegisterAppStateChangeNotification(PAPPSTATE_CHANGE_ROUTINE,void *,PAPPSTATE_REGISTRATION *);
43 APICONTRACT void NTAPI UnregisterAppStateChangeNotification(PAPPSTATE_REGISTRATION);
45 #ifdef __cplusplus
47 #endif
49 #endif /* _WINE_APISET_PSMAPPNOTIFY_H_ */