diff --git a/reactos/include/wine/dlgs.h b/reactos/include/wine/dlgs.h new file mode 100644 index 00000000000..2c344c38654 --- /dev/null +++ b/reactos/include/wine/dlgs.h @@ -0,0 +1,16 @@ +/* + * Compatibility header + * + * This header is wrapper to allow compilation of Wine DLLs under ReactOS + * build system. It contains definitions commonly refered to as Wineisms + * and definitions that are missing in w32api. + */ + +#ifndef __WINE_DLGS_H +#define __WINE_DLGS_H + +#include_next + +#define NEWFILEOPENORD 1547 + +#endif /* __WINE_DLGS_H */