Gregory Haerr

Results 674 comments of Gregory Haerr

Not sure what the reason for your stdio.h error is. The Argc and Argv errors are because the HAVE_VNC_SERVER isn't supported when compiling with LINK_APP_INTO_SERVER. It will compile when that...

Thanks for bringing this to my attention, I'll fix it. Of course runapp isn't at all required to run the win32 api binaries, but the docs were rewritten to suggest...

What do you mean? Do you mean not running within a window within the 800x600 screen? So that it just displays using the full screen size but with no window...

If you create your main window without using the default style of WS_OVERLAPPEDWINDOW, but instead just use, perhaps WS_POPUP, and then specify the x,y params as 0,0 that should work,...

I just tested with WS_POPUP on demos/mwin/mwdemo2.c and that works... except that not only do you have to set x,y to 0,0 but the width, height to the screen size,...

![Screen Shot 2019-03-13 at 11 41 13 AM](https://user-images.githubusercontent.com/11985637/54301579-dd299400-4584-11e9-8b66-f3a604210e67.png) Here's mwdemo2 with the mods suggested.

An issue there will be that each application runs within its own Microwindows system, which is using then run again with X11, or on the single frame buffer linux console....

[patch.txt](https://github.com/ghaerr/microwindows/files/2962901/patch.txt) Thanks, here's the patch, you're right GitHub didn't take my last paste!

Here's a screenshot of multiple win32 apps running in the same process.

In order to make your idea work, we need to determine how the system will know the client window size by somehow running the client until the first CreateWindow call,...