Include winapifamily.h for WINAPI_FAMILY macro and provide a definition of WINAPI_FAMILY_PHONE_APP if not present (happens compiling under mingw)
Signed-off-by: Tyler Retzlaff <roret...@linux.microsoft.com> --- lib/eal/windows/include/dirent.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/eal/windows/include/dirent.h b/lib/eal/windows/include/dirent.h index b522424..80bc6c3 100644 --- a/lib/eal/windows/include/dirent.h +++ b/lib/eal/windows/include/dirent.h @@ -8,6 +8,12 @@ #ifndef DIRENT_H #define DIRENT_H +#include <winapifamily.h> + +#ifndef WINAPI_FAMILY_PHONE_APP +#define WINAPI_FAMILY_PHONE_APP 3 +#endif + /* * Include windows.h without Windows Sockets 1.1 to prevent conflicts with * Windows Sockets 2.0. -- 1.8.3.1