
Pablo Aguilar wrote:
There's one last catch (which I had to go through) to get this to work. I did as Russel suggested, and put everything in the PCH, only to find out I'd tried that before but had gotten the error "initialized data something, can't create PCH". The error came from including "locale" in the PCH also (I guess string pulls it in, I don't know, didn't bother looking).
So, after changing out of the "library is right, I must be doing something wrong" mode, I found that "locale" missdetects the borland compiler, it has an #ifdef __BORLANDC
where it should've been __BORLANDC__
I had seen this error, by when I adjusted the order of includes for the pre-compiled headers, it went away. I'll change our locale header too. Thanks again Russell