Andrew Eikum : include: Add new SHCNRF flags.
Module: wine Branch: master Commit: 5f884d19c69b8a857083c013e5aecf6031d7bf70 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5f884d19c69b8a857083c013e5... Author: Andrew Eikum <aeikum(a)codeweavers.com> Date: Mon Jun 28 10:06:51 2010 -0500 include: Add new SHCNRF flags. --- include/shlobj.h | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/include/shlobj.h b/include/shlobj.h index dbf8518..5f125c1 100644 --- a/include/shlobj.h +++ b/include/shlobj.h @@ -1297,11 +1297,17 @@ typedef struct _SHChangeNotifyEntry #define SHCNF_PRINTERW 0x0006 #define SHCNF_TYPE 0x00FF #define SHCNF_FLUSH 0x1000 -#define SHCNF_FLUSHNOWAIT 0x2000 +#define SHCNF_FLUSHNOWAIT 0x3000 +#define SHCNF_NOTIFYRECURSIVE 0x10000 #define SHCNF_PATH WINELIB_NAME_AW(SHCNF_PATH) #define SHCNF_PRINTER WINELIB_NAME_AW(SHCNF_PRINTER) +#define SHCNRF_InterruptLevel 0x0001 +#define SHCNRF_ShellLevel 0x0002 +#define SHCNRF_RecursiveInterrupt 0x1000 +#define SHCNRF_NewDelivery 0x8000 + void WINAPI SHChangeNotify(LONG wEventId, UINT uFlags, LPCVOID dwItem1, LPCVOID dwItem2); typedef enum {
participants (1)
-
Alexandre Julliard