From e26802329f4a10f3940814de21c4ec6d0b10662d Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Fri, 9 Jan 2004 02:00:55 +0000 Subject: [PATCH] Added dlgs.h for port of comdlg32.dll svn path=/trunk/; revision=7521 --- reactos/include/wine/dlgs.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 reactos/include/wine/dlgs.h 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 */