<div class="gmail_quote">On Mon, Jul 30, 2012 at 8:31 PM, Stuart <span dir="ltr"><<a href="mailto:stugol@gmx.com" target="_blank">stugol@gmx.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'm trying to write an actual program in D, but no matter what I do I get stupid errors that mean nothing to me. (Reminds me of C++)<br>
<br>
   Error 42: Symbol Undefined<br>
   _<u></u>D8infinity8standard7runtime4IA<u></u>pp4IApp11__InterfaceZ <br>
<br>
Huh? This usually happens if I omit the module statement at the top of EVERY DAMN FILE (why???) but in this case I haven't omitted it, yet I'm still getting the error.<br>
<br>
Also, I get the following error:<br>
<br>
   Error 42: Symbol Undefined<br>
   _D3dfl8internal6winapi12__<u></u>ModuleInfoZ<br>
<br>
The code producing this second error is:<br>
<br>
        int Run() {<br>
                import core.sys.windows.windows;<br>
                import dfl.internal.winapi;<br>
                MSG msg;<br>
                while (GetMessageA(&msg, null, 0, 0)) {<br>
                        TranslateMessage(&msg);<br>
                        DispatchMessageA(&msg);<br>
                        if (msg.hwnd && !IsWindow(msg.hwnd)) break;<br>
                }<br>
                return 0;<br>
        }<br>
<br>
What the HELL is this "ModuleInfo", why is it necessary, why is it always missing when a "module" statement is not present, and why is it missing NOW?<br>
</blockquote></div><br>For one, it would be mighty polite of the compiler to demangle the "<span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">_</span><u style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"></u><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">D8infinity8standard7runtime4</span><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">IA</span><u style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"></u><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">pp4IApp11__InterfaceZ</span>", which happens to be "infinity.standard.runtime.App.App.__Interface".<br clear="all">
<div><br></div><div>The ModuleInfo is a half-working runtime reflection structure, which the compiler successfully fails to build when you omit the optional module declaration.</div><div><br></div>-- <br>Bye,<br>Gor Gyolchanyan.<br>