import tango.io.Stdout;
void main()
{
Stdout.formatln;
}
dmd crashed.
On 11.11.2009 04:57, Sean Fennell wrote:
I'm very green to D, just learning it now.
I have a module that I wrote. Its pretty simple, just helper functions to get
input from user as certain data types
GetInt()
GetString()
GetChar()
etc...
I compiled the module using dmd -lib mymod.d which outpu
I'm very green to D, just learning it now.
I have a module that I wrote. Its pretty simple, just helper functions to get
input from user as certain data types
GetInt()
GetString()
GetChar()
etc...
I compiled the module using dmd -lib mymod.d which output mymod.a
Now I've imported my module into
> 1. Get the derelict fmod bindings (I think they are not in the derelict
> svn, but there's a link on the derelict project page on dsource)
> 2. import derelict.fmod.fmod;
> 3. DerelictFMOD.load();
> 4. Use the fmod API normally
DerelictFMOD is not up-to-date with the latest stable version thoug
Joel Christensen wrote:
grauzone wrote:
Joel Christensen wrote:
FMOD sound (record and play) is off D Programming web site.
http://wiki.dprogramming.com/FMod/HomePage
I followed instructions from the web site. But one instruction said
to use 'coffimplib.exe' but I couldn't see where it is to
Joel Christensen wrote:
grauzone wrote:
Joel Christensen wrote:
FMOD sound (record and play) is off D Programming web site.
http://wiki.dprogramming.com/FMod/HomePage
I followed instructions from the web site. But one instruction said
to use 'coffimplib.exe' but I couldn't see where it is to
Don Wrote:
> Beware of bug 3342: at present you CANNOT use DLLs with D2 on Windows XP
> or earlier. That's not the problem here, but you need to know it. Just
> telling you before you waste lots of time.
Thank you very much for letting me know!!
Sam Hu wrote:
DMD2.036.
Under dmd/phobos release package,inside samples\d\mydll folder,there is a
sample to write dll and import lib fille from.It compiled and runs fine.But
when I try to modify a bit,it produce strange error problem.Kindly refer to the
sample for source.
Beware of bug 3342