Re: [PATCH 1/5] include: Added definitions used by GetFileInformationByHandleEx.
10 Oct
2012
10 Oct
'12
2:40 a.m.
"Vincas Miliƫnas" <vincas.miliunas(a)gmail.com> wrote:
+typedef struct _FILE_ID_DESCRIPTOR { + DWORD dwSize; + FILE_ID_TYPE Type; + union { + LARGE_INTEGER FileId; + GUID ObjectId; +#if (_WIN32_WINNT >= 0x0602) + EXT_FILE_ID_128 ExtendedFileId; +#endif + } DUMMYUNIONNAME; +} FILE_ID_DESCRIPTOR, *LPFILE_ID_DESCRIPTOR;
The '#if/#endif' part is useless in Wine (here in in other places as well). Also you should add new structures in every patch that needs them, one by one, not adding a bunch of not used stuff at once. P.S. In PSDK 7.1 (targeting Windows 7) some of the structures look different. Where does this come from? -- Dmitry.
4814
Age (days ago)
4814
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dmitry Timoshkov