Re: [Mingw-w64-public] why isn't UINT64_MAX usable when countdown reaches past 0 to -1?

2014-12-19 Thread Jim Michaels
pos on right hand size should have been i...found the bug shortly after posting. thanks.  - Jim Michaels jmich...@yahoo.com j...@renewalcomputerservices.com http://RenewalComputerServices.com http://JesusnJim.com (computer repair info, programming) From: David Macek To: mingw

Re: [Mingw-w64-public] dwrite.h error: duplicate member 'GetFontCollection'

2014-12-19 Thread Martin Mitáš
Dne 19. 12. 2014 v 10:20 Jack Andrews napsal(a): > Thank you for mingw-w64. > > I am writing a DLL extension in C (not C++) and I came across a problem when > I write test.c as: > > $cat test.c > #include > > compiling the above causes an error. > (shortened) > > In the first error, the p

Re: [Mingw-w64-public] dwrite.h error: duplicate member 'GetFontCollection'

2014-12-19 Thread JonY
On 12/19/2014 17:20, Jack Andrews wrote: > Thank you for mingw-w64. > > I am writing a DLL extension in C (not C++) and I came across a problem > when I write test.c as: > > $cat test.c > #include > > compiling the above causes an error. > Hi, Sorry about the delay, but after looking at it

[Mingw-w64-public] how to turn off file globbing in 5.0.0?

2014-12-19 Thread Jim Michaels
how do I turn off file globbing in 5.0.0? seems like the method changes with time.  - Jim Michaels jmich...@yahoo.com j...@renewalcomputerservices.com http://RenewalComputerServices.com http://JesusnJim.com (computer repair info, programming) --

Re: [Mingw-w64-public] why isn't UINT64_MAX usable when countdown reaches past 0 to -1?

2014-12-19 Thread David Macek
On 18. 12. 2014 21:35, Jim Michaels wrote: > dongshengdaily 5.0.0 20141105 > > #if defined(_WIN64) > for (i=src.size()-1-findStr.size(); i>=pos && pos!=UINT64_MAX; i--) { > #else > for (i=src.size()-1-findStr.size(); i>=pos && pos!=UINT32_MAX; i--) { > #endif > std::cerr<<"

[Mingw-w64-public] [PATCH] time.h: Restore POSIX guards around *_r functions.

2014-12-19 Thread Jacek Caban
Those were removed as part of commit: http://sourceforge.net/p/mingw-w64/mingw-w64/ci/6a4110da387155e5e703d04dd57c16240657593a Looking at the commit message, it's surprising that they were removed. It's definitely not a typo nor regenerated Makefile. This causes redefinition error in Mozilla code

[Mingw-w64-public] dwrite.h error: duplicate member 'GetFontCollection'

2014-12-19 Thread Jack Andrews
Thank you for mingw-w64. I am writing a DLL extension in C (not C++) and I came across a problem when I write test.c as: $cat test.c #include compiling the above causes an error. An easy way to reproduce this error is to not bother with the test.c file and run (in msys): $ echo |gcc -xc -in