mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[PSDK] Add IDCANCEL and IDASYNC values (returned by MessageBoxTimeout() and WTSSendMessage() functions).
This commit is contained in:
parent
fcfcf7a5c9
commit
7bfd6858fb
2 changed files with 15 additions and 0 deletions
|
@ -836,6 +836,11 @@ extern "C" {
|
||||||
#define IDTRYAGAIN 10
|
#define IDTRYAGAIN 10
|
||||||
#define IDCONTINUE 11
|
#define IDCONTINUE 11
|
||||||
#endif
|
#endif
|
||||||
|
#if (WINVER >= 0x0501)
|
||||||
|
#ifndef IDTIMEOUT
|
||||||
|
#define IDTIMEOUT 32000
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#define GWL_EXSTYLE (-20)
|
#define GWL_EXSTYLE (-20)
|
||||||
#define GWL_STYLE (-16)
|
#define GWL_STYLE (-16)
|
||||||
|
|
|
@ -23,6 +23,16 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#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
|
typedef enum _WTS_VIRTUAL_CLASS
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue