[PATCH 1/2] include: Add ntifs.h with Reparse point related definitions and typedefs.(try 2)

Sebastian Lackner sebastian at fds-team.de
Tue Aug 4 13:05:20 CDT 2015


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




More information about the wine-devel mailing list