Re: [Mingw-w64-public] icons?

2014-10-27 Thread LRN
On 27.10.2014 22:38, Mark Cianfaglione wrote: > On Mon, 2014-10-27 at 19:18 +0300, LRN wrote: > Is there some way to distribute the icons with the application and how is it done? Mark >>> >>> The thing you are searching is a resource file (.rc). By it you are >>> able to distr

Re: [Mingw-w64-public] windows 32 bit memory address space

2014-10-27 Thread Rashad M
On Tue, Oct 28, 2014 at 12:51 AM, Kai Tietz wrote: > Hi Rashad, > > 2014-10-27 20:13 GMT+01:00 Pavel : > > Hi Rashad, > > > > I believe this is given by the 32 bit implementation of Win32 API > > (surprisingly, the API on 64bit systems is also called Win32, but is > > implemented as 64bit). The s

Re: [Mingw-w64-public] icons?

2014-10-27 Thread Ray Donnelly
On Mon, Oct 27, 2014 at 7:38 PM, Mark Cianfaglione wrote: > On Mon, 2014-10-27 at 19:18 +0300, LRN wrote: > >> >> Is there some way to distribute the icons with the application and how >> >> is it done? >> >> >> >> Mark >> > >> > The thing you are searching is a resource file (.rc). By it you are

Re: [Mingw-w64-public] icons?

2014-10-27 Thread Mark Cianfaglione
On Mon, 2014-10-27 at 19:18 +0300, LRN wrote: > >> Is there some way to distribute the icons with the application and how > >> is it done? > >> > >> Mark > > > > The thing you are searching is a resource file (.rc). By it you are > > able to distribute in image-file icons, bitmaps, animations, e

Re: [Mingw-w64-public] windows 32 bit memory address space

2014-10-27 Thread Kai Tietz
Hi Rashad, 2014-10-27 20:13 GMT+01:00 Pavel : > Hi Rashad, > > I believe this is given by the 32 bit implementation of Win32 API > (surprisingly, the API on 64bit systems is also called Win32, but is > implemented as 64bit). The system simply does not allow you to allocate > more memory. It even l

Re: [Mingw-w64-public] windows 32 bit memory address space

2014-10-27 Thread Pavel
Hi Rashad, I believe this is given by the 32 bit implementation of Win32 API (surprisingly, the API on 64bit systems is also called Win32, but is implemented as 64bit). The system simply does not allow you to allocate more memory. It even looks like the 3GB option (4GT) is maybe not supported on W

Re: [Mingw-w64-public] windows 32 bit memory address space

2014-10-27 Thread Rashad M
Hi Pavel, On Mon, Oct 27, 2014 at 11:35 PM, Pavel wrote: > Actually the virtual memory limit available for single application is > 2GB on 32bit Windows. It is possible to extent it to 3GB if special care > is taken: http://msdn.microsoft.com/en-us/library/bb613473(VS.85).aspx The page says tha

Re: [Mingw-w64-public] windows 32 bit memory address space

2014-10-27 Thread Pavel
Actually the virtual memory limit available for single application is 2GB on 32bit Windows. It is possible to extent it to 3GB if special care is taken: http://msdn.microsoft.com/en-us/library/bb613473(VS.85).aspx Pavel On Mon, 2014-10-27 at 18:33 +0100, Adrien Nader wrote: > No, it's impossible.

Re: [Mingw-w64-public] windows 32 bit memory address space

2014-10-27 Thread Adrien Nader
No, it's impossible. 2 ** 32 = 4GB so the whole system is limited to 4GB in total and there's 1GB (or 2GB) which is not usable by applications. The only solution is to move to 64bit applications. Actually the limitation on memory allocations is the main reason for the creation of 64bit systems.

[Mingw-w64-public] windows 32 bit memory address space

2014-10-27 Thread Rashad M
Hi all, Is there any option to overcome the 2GB memory limitation on a windows 32 bit. with mingw64. Earlier I was using mingw32 from mingw.org and there seems to problem on 32bit windows. Especially when I want to allocate a RAM of more than 3 GB. I moved to mingww64 toolchain and the problem st

Re: [Mingw-w64-public] icons?

2014-10-27 Thread LRN
On 27.10.2014 18:21, Kai Tietz wrote: > 2014-10-27 15:41 GMT+01:00 Mark Cianfaglione: >> Hello >> >> I've managed to write a program that works but I'm using the default >> icon theme in the application but I get a "Could not find the icon >> 'image-missing-ltr' The 'hicolor' theme was not found ei

Re: [Mingw-w64-public] icons?

2014-10-27 Thread Kai Tietz
2014-10-27 15:41 GMT+01:00 Mark Cianfaglione : > Hello > > I've managed to write a program that works but I'm using the default > icon theme in the application but I get a "Could not find the icon > 'image-missing-ltr' The 'hicolor' theme was not found either. > > Is there some way to distribute th

[Mingw-w64-public] icons?

2014-10-27 Thread Mark Cianfaglione
Hello I've managed to write a program that works but I'm using the default icon theme in the application but I get a "Could not find the icon 'image-missing-ltr' The 'hicolor' theme was not found either. Is there some way to distribute the icons with the application and how is it done? Mark -

Re: [Mingw-w64-public] cannot execute binary file: Exec format error

2014-10-27 Thread Mark Cianfaglione
Solved It turns out that the size of the pre-allocated variables was too high. When I reduced the size of the structs it worked. I will add libxls and xlslib when I get a few moments. Thanks On Sat, 2014-10-25 at 21:18 +0100, Ray Donnelly wrote: > On Sat, Oct 25, 2014 at 1:47 PM, Mark Cianfagl

Re: [Mingw-w64-public] mstcpip.h: Added definitions for RCVALL_IPLEVEL.

2014-10-27 Thread Kai Tietz
Hi, sure, please apply. Thanks, Kai 2014-10-27 14:03 GMT+01:00 Dongsheng Song : > On Fri, Oct 24, 2014 at 11:57 PM, Dongsheng Song > wrote: >> When I write raw socket program, I found RCVALL_IPLEVEL missing, so >> here is the patch. >> >> Please review. >> >> --- >> mingw-w64-headers/include/m

Re: [Mingw-w64-public] mstcpip.h: Added definitions for RCVALL_IPLEVEL.

2014-10-27 Thread Dongsheng Song
On Fri, Oct 24, 2014 at 11:57 PM, Dongsheng Song wrote: > When I write raw socket program, I found RCVALL_IPLEVEL missing, so > here is the patch. > > Please review. > > --- > mingw-w64-headers/include/mstcpip.h |1 + > 1 file changed, 1 insertion(+) > > diff --git a/mingw-w64-headers/include