Stdout.formatln crashed dmd1.051

2009-11-10 Thread Sam Hu
import tango.io.Stdout; void main() { Stdout.formatln; } dmd crashed.

Re: error linking to my own custom module

2009-11-10 Thread torhu
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

error linking to my own custom module

2009-11-10 Thread Sean Fennell
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

Re: FMOD working with Windows

2009-11-10 Thread #ponce
> 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

Re: FMOD working with Windows

2009-11-10 Thread grauzone
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

Re: FMOD working with Windows

2009-11-10 Thread Mike Parker
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

Re: DLL under windows

2009-11-10 Thread Sam Hu
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!!

Re: DLL under windows

2009-11-10 Thread Don
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