#ifndef _NTAFD_H
// private
typedef struct _AFD_ENDPOINT_FLAGS
{
union
{
struct
{
UCHAR ConnectionLess : 1;
UCHAR : 3;
UCHAR MessageMode : 1;
UCHAR Raw : 1;
UCHAR : 3;
UCHAR Multipoint : 1;
UCHAR C_Root : 1;
UCHAR : 3;
UCHAR D_Root : 1;
UCHAR IgnoreTDI : 1;
UCHAR : 3;
UCHAR RioSocket : 1;
};
ULONG EndpointFlags;
};
} AFD_ENDPOINT_FLAGS, *PAFD_ENDPOINT_FLAGS;
View code on GitHub
No description available.