Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wine-mirror
GitHub Repository: wine-mirror/wine
Path: blob/master/include/appnotify.h
4386 views
1
/*
2
* Copyright (C) 2023 Mohamad Al-Jaf
3
*
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.
8
*
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.
13
*
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
17
*/
18
19
#ifndef _WINE_APISET_PSMAPPNOTIFY_H_
20
#define _WINE_APISET_PSMAPPNOTIFY_H_
21
22
#include <windows.h>
23
24
#ifdef _CONTRACT_GEN
25
#define PSM_APP_API_HOST
26
#endif
27
28
#ifdef __cplusplus
29
extern "C" {
30
#endif
31
32
#if defined(PSM_APP_API_HOST)
33
#define APICONTRACT
34
#else
35
#define APICONTRACT DECLSPEC_IMPORT
36
#endif
37
38
typedef void (__cdecl *PAPPSTATE_CHANGE_ROUTINE)(BOOLEAN quiesced, void *context);
39
typedef void (__cdecl *PAPPCONSTRAIN_CHANGE_ROUTINE)(BOOLEAN constrained, void *context);
40
41
typedef struct _APPSTATE_REGISTRATION *PAPPSTATE_REGISTRATION;
42
typedef struct _APPCONSTRAIN_REGISTRATION *PAPPCONSTRAIN_REGISTRATION;
43
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);
48
49
#ifdef __cplusplus
50
}
51
#endif
52
53
#endif /* _WINE_APISET_PSMAPPNOTIFY_H_ */
54
55