From c56f952da2c519cfb4898f60dbeeeb0ed7efc7bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20Pluci=C5=84ski?= Date: Tue, 5 Jul 2011 11:07:09 +0200 Subject: [PATCH] include: Add FOF_NO_UI flag. --- include/shellapi.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/shellapi.h b/include/shellapi.h index 9866b5ed4a7..23457f25b6c 100644 --- a/include/shellapi.h +++ b/include/shellapi.h @@ -186,6 +186,7 @@ HRESULT WINAPI SHGetImageList(INT, REFIID, void **); #define FOF_WANTNUKEWARNING 0x4000 /* during delete operation, warn if delete instead of recycling (even if FOF_NOCONFIRMATION) */ #define FOF_NORECURSEREPARSE 0x8000 /* don't do recursion into reparse points */ +#define FOF_NO_UI (FOF_SILENT | FOF_NOCONFIRMATION | FOF_NOERRORUI | FOF_NOCONFIRMMKDIR) typedef WORD FILEOP_FLAGS;