|
From: Eric K. <ek...@rz...> - 2001-10-03 22:37:45
|
Steven Edwards <Ste...@kn...> wrote: > > I'm still learning C so most of these have had very little changes. > I've attached a program manager clone. (thanks to Eric Kohl for fixing the > resource isssues)Icons dont work, plus I havent figured out how to get rid > of the damn console window when running any of the apps I've ported from > wine. Oooops, I guess this is my fault. I started progman from the command line only, so I didn't realize that it is still a console app. To make progman a gui app, you have to add '-Wl,--subsystem,windows' to the linker run. The fixed makfile rule to build progman is: progman.exe: $(OBJECTS) $(CC) $(CFLAGS) -Wl,--subsystem,windows $(OBJECTS) $(LIBS) -o progman.exe $(NM) --numeric-sort progman.exe > progman.sym > Zeno you want to help me with porting the comcrtl and commdlg libs from > wine? We need these before we can have a working shell. If you port the Wine comctl32 to ReactOS you have to be aware of the fact that some controls - mainly listview, treeview, rebar and toolbar - are still under construction and major rewrites will happen in the future. Treeview and listview don't handle unicode messages yet and adding unicode support results in a major rewrite of these controls. If you fix any bugs in the common controls, please make sure you submit patches to the Wine project too. - Eric Kohl ==================================================== = To remove yourself from this mailing list, go to = = http://www.reactos.com/home/mailing.html = ==================================================== |