https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2fc872895bbe9db49f2e1f...
commit 2fc872895bbe9db49f2e1fbb667537aca7b430ac Author: Mark Jansen mark.jansen@reactos.org AuthorDate: Sat Jan 4 21:23:53 2020 +0100 Commit: Mark Jansen mark.jansen@reactos.org CommitDate: Sat Feb 8 22:09:13 2020 +0100
[PSDK] Add FileDescriptor.dwFlags constants --- sdk/include/psdk/shlobj.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+)
diff --git a/sdk/include/psdk/shlobj.h b/sdk/include/psdk/shlobj.h index 82df46527fe..973f923a5d6 100644 --- a/sdk/include/psdk/shlobj.h +++ b/sdk/include/psdk/shlobj.h @@ -2126,6 +2126,23 @@ typedef struct _DROPFILES BOOL fWide; } DROPFILES, *LPDROPFILES;
+ +/* + * FILEDESCRIPTOR[A|W].dwFlags + */ +#define FD_CLSID 0x00000001 +#define FD_SIZEPOINT 0x00000002 +#define FD_ATTRIBUTES 0x00000004 +#define FD_CREATETIME 0x00000008 +#define FD_ACCESSTIME 0x00000010 +#define FD_WRITESTIME 0x00000020 +#define FD_FILESIZE 0x00000040 +#define FD_PROGRESSUI 0x00004000 +#define FD_LINKUI 0x00008000 +#if (NTDDI_VERSION >= NTDDI_VISTA) +#define FD_UNICODE 0x80000000 +#endif + /* * Properties of a file in the clipboard */