dxgi: Fix a typo in a comment.
[wine.git] / include / appnotify.h
bloba38c0a0d937ea5ad55de988995d1173a6cb1bd23
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);
39 typedef void (__cdecl *PAPPCONSTRAIN_CHANGE_ROUTINE)(BOOLEAN constrained, void *context);
41 typedef struct _APPSTATE_REGISTRATION *PAPPSTATE_REGISTRATION;
42 typedef struct _APPCONSTRAIN_REGISTRATION *PAPPCONSTRAIN_REGISTRATION;
44 APICONTRACT ULONG NTAPI RegisterAppConstrainedChangeNotification(PAPPCONSTRAIN_CHANGE_ROUTINE,void *,PAPPCONSTRAIN_REGISTRATION *);
45 APICONTRACT ULONG NTAPI RegisterAppStateChangeNotification(PAPPSTATE_CHANGE_ROUTINE,void *,PAPPSTATE_REGISTRATION *);
46 APICONTRACT void NTAPI UnregisterAppConstrainedChangeNotification(PAPPCONSTRAIN_REGISTRATION);
47 APICONTRACT void NTAPI UnregisterAppStateChangeNotification(PAPPSTATE_REGISTRATION);
49 #ifdef __cplusplus
51 #endif
53 #endif /* _WINE_APISET_PSMAPPNOTIFY_H_ */