headers/shlobj.h: Add missing KNOWN_FOLDER_FLAG constants Signed-off-by: Alvin Wong <alvin@alvinhc.com> Signed-off-by: LIU Hao <lh_mouse@126.com>
diff --git a/mingw-w64-headers/include/shlobj.h b/mingw-w64-headers/include/shlobj.h index be087c4..c775f50 100644 --- a/mingw-w64-headers/include/shlobj.h +++ b/mingw-w64-headers/include/shlobj.h
@@ -734,6 +734,17 @@ #if NTDDI_VERSION >= 0x06000000 typedef enum { KF_FLAG_DEFAULT = 0x00000000, +#if NTDDI_VERSION >= NTDDI_WIN10_RS3 + KF_FLAG_FORCE_APP_DATA_REDIRECTION = 0x00080000, +#endif +#if NTDDI_VERSION >= NTDDI_WIN10_RS2 + KF_FLAG_RETURN_FILTER_REDIRECTION_TARGET = 0x00040000, + KF_FLAG_FORCE_PACKAGE_REDIRECTION = 0x00020000, + KF_FLAG_NO_PACKAGE_REDIRECTION = 0x00010000, +#endif +#if NTDDI_VERSION >= NTDDI_WIN8 + KF_FLAG_FORCE_APPCONTAINER_REDIRECTION = 0x00020000, +#endif #if NTDDI_VERSION >= 0x06010000 KF_FLAG_NO_APPCONTAINER_REDIRECTION = 0x00010000, #endif