"Paul Chitescu" paulc@voip.null.ro wrote:
--- ./dlls/mscoree/mscoree_main.c.orig 2006-10-06 21:38:15.000000000 +0300 +++ ./dlls/mscoree/mscoree_main.c 2006-10-08 16:11:47.000000000 +0300 @@ -19,15 +19,104 @@
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
-#include <stdarg.h> +#define WIN32_LEAN_AND_MEAN
+#include "config.h" +#include "wine/port.h" +#include "wine/library.h" +#include "wine/debug.h"
WIN32_LEAN_AND_MEAN is used only by windows.h to omit some optional includes. Since inclusion of windows.h is forbidden in Wine DLLs defining WIN32_LEAN_AND_MEAN is not needed.
On Tue, 10 Oct 2006, Dmitry Timoshkov wrote:
[...] WIN32_LEAN_AND_MEAN is used only by windows.h to omit some optional includes. Since inclusion of windows.h is forbidden in Wine DLLs defining WIN32_LEAN_AND_MEAN is not needed.
Sometimes I'm a lazy copy'n'paster.
Paul