Dave Byington wrote:
> I have everything compiling fine but I'm triggering a breakpoint in
> dbgheap.c on line 1252
>
> [quote]
>
> Debug Assertion Failure
This is almost always caused by mixing build modes.
There are three or four build options that must all be the same in the
libraries you use as in your main program or else VC++'s runtime gets
very upset. Just off the top of my head: debug vs. release, threaded
CRT vs. not, and CRT in DLL vs. statically linked. There may be more.
See README.vc for some hints.