<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">Hi Andreas,</div>
    <div class="moz-cite-prefix"><br>
    </div>
    <div class="moz-cite-prefix">On 4/17/19 10:31 PM, Andreas Maier
      wrote:<br>
    </div>
    <blockquote type="cite"
      cite="mid:20190417203150.24174-1-staubim@quantentunnel.de">
      <div class="moz-text-plain" wrap="true" graphical-quote="true"
        style="font-family: -moz-fixed; font-size: 12px;"
        lang="x-unicode">
        <pre class="moz-quote-pre" wrap="">
+#include "config.h"
+#include "wine/port.h"
+
+#include <math.h></pre>
      </div>
    </blockquote>
    <p><br>
    </p>
    <p>Those are not needed, AFAICS.<br>
    </p>
    <br>
    <blockquote type="cite"
      cite="mid:20190417203150.24174-1-staubim@quantentunnel.de">
      <div class="moz-text-plain" wrap="true" graphical-quote="true"
        style="font-family: -moz-fixed; font-size: 12px;"
        lang="x-unicode">
        <pre class="moz-quote-pre" wrap="">diff --git a/dlls/jscript/global.c b/dlls/jscript/global.c
index 33de641483..57cc275efd 100644
--- a/dlls/jscript/global.c
+++ b/dlls/jscript/global.c
@@ -116,8 +116,9 @@ static WCHAR int_to_char(int i)
 static HRESULT JSGlobal_Enumerator(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
         jsval_t *r)
 {
-    FIXME("\n");
-    return E_NOTIMPL;
+    TRACE("JSGlobal_Enumerator\n");
+
+    return EnumeratorConstr_value(ctx, jsthis, flags, argc, argv, r);
 }</pre>
      </div>
    </blockquote>
    <p><br>
    </p>
    <p>The way you handled it in v1 was better as it covered more corner
      cases. Please use jsdisp_define_data_property() in
      init_constructors() to set the constructor on global object.<br>
    </p>
    <p><br>
    </p>
    <p>Thanks,</p>
    <p>Jacek<br>
    </p>
  </body>
</html>