[PSDK] Add IDCANCEL and IDASYNC values (returned by MessageBoxTimeout() and WTSSendMessage() functions).

This commit is contained in:
Hermès Bélusca-Maïto 2018-02-20 22:05:31 +01:00
parent fcfcf7a5c9
commit 7bfd6858fb
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
2 changed files with 15 additions and 0 deletions

View file

@ -836,6 +836,11 @@ extern "C" {
#define IDTRYAGAIN 10
#define IDCONTINUE 11
#endif
#if (WINVER >= 0x0501)
#ifndef IDTIMEOUT
#define IDTIMEOUT 32000
#endif
#endif
#define GWL_EXSTYLE (-20)
#define GWL_STYLE (-16)

View file

@ -23,6 +23,16 @@
extern "C" {
#endif
/*
* pResponse values from WTSSendMessage(), in addition
* to those from the standard MessageBox() API.
*/
#ifndef IDTIMEOUT
#define IDTIMEOUT 32000
#endif
#ifndef IDASYNC
#define IDASYNC 32001
#endif
typedef enum _WTS_VIRTUAL_CLASS
{