On 1/29/13, ollie <[email protected]> wrote: > rdmd.exe stopped compiling on Windows a couple of days ago.
Thanks for the report.
> + ShellExecuteA(null, toUTFz!(LPCSTR)("open"), toUTFz!(LPCSTR)
> (page), null, null, SW_SHOWNORMAL);
For the "A" versions you can simply use toStringz, and D string
literals are zero-appended by default so "open" doesn't have to be
changed (note that means only for string literals, not string
variables).
https://github.com/D-Programming-Language/tools/pull/42
