On 04.08.2015 19:58, YongHao Hu wrote:
try 2: Fix nameless union.(thanks Piotr)
include/Makefile.in | 1 + include/ntifs.h | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 include/ntifs.h
- ULONG ReparseTag;
- USHORT ReparseDataLength;
- USHORT Reserved;
- union foo
- {
struct
{
Please use DUMMYUNIONNAME instead, like in the other include files.
It should look like this:
union { ... } DUMMYUNIONNAME;
Regards, Sebastian