-
I mean implement code.
2009-11-08 09:07:19 UTC in Win32++
-
please put those code in it.
2009-11-08 09:04:43 UTC in Win32++
-
In concerning different compilers and different libversion I suggest you learn from wxwidgets, like wxmsw28u_gcc.dll means Wxwidget build for ms windows version 2.80 with Unicode support by gcc.
2009-10-21 11:57:05 UTC in Win32++
-
Pls Change The Generated lib name
I noticed the library name are all Win32xx.lib in different directory, I suggest the output name should represent their compile option , for example Win32xxUD.lib means Unicode Debug version lib, and Win32xxR.lib means ANSI Release version, then the sample project link different lib on different link option.
The lib’s out put directory should change to...
2009-10-20 01:22:53 UTC in Win32++
-
I did not noticed that, I think you should change the layout of that, because almost all library like win sdk, VC++ only inlcude header files in include not in src dir.
2009-10-20 00:51:55 UTC in Win32++
-
I notice there dulicate heaser files in src dir and include dir, I think maybe nash want to use src dir for library compiling, and include dir for general use. but if one want to add some special function to it, it must manipulate the two dirs' header files. so I suggest del header files from src dir.
2009-10-18 14:36:03 UTC in Win32++
-
Frankly to say Win32++ is very useful to somebody who can not afford to buy a non free version visual studio like standard version. And also Win32++ build upon win32 api, so it should run quickly than MFC.
2009-07-22 09:15:01 UTC in Win32++
-
It can support Multivolume compress like VCD size 600M or 1.44M soft disk, But How can it support self defined size Multivolume compress?.
2009-04-15 12:13:42 UTC in 7-Zip
-
In fact I found your impplement in one header file can take difficult for cross reference on two classes.
because I found ahead reference on each header file can not work on VS2008.
for example:
//class A.h
#include "B.h"
class A
{
int i;
B b;
}
//class B.h
#include "A.h"
class B
{
int i;
A *a;
}
one way to resolve it is:
//class A.h...
2009-03-31 11:34:20 UTC in Win32++
-
I think Win32++ lack some basic MFC calsses like:
class CBrush;
class CFont;
class CPen;
and win32 ctrls like:
CEdit
CList
It is useful for programming.
2009-03-31 08:15:25 UTC in Win32++