Resources for “Developing for Windows on Linux”
July 1st, 2004 by Joey Bernard in
Command-Line Options for Debugging with Wine: www.winehq.org/site/docs/wine-user/command-line-options
GNU Compiler Collection (GCC) Source Code: gcc.gnu.org
Linux Journal FTP Site: ftp.ssc.com/pub/lj/listings/issue123/7128.tgz
MinGW: a collection of freely available and freely distributable Windows specific header files and import libraries combined with GNU toolsets: www.mingw.org
MinGW “Related Sites” Page (more Win32 tools): www.mingw.org/links.shtml
Petzold, Charles. Programming Windows, Fifth Edition. Microsoft Press. 1999.
The home page for the IRC channel #winprog offers a useful Win32 tutorial: winprog.org/tutorial
Wine: www.winehq.org
Special Magazine Offer -- 2 Free Trial Issues!
Receive 2 free trial issues of Linux Journal as well as instant online access to current and past issues. There's NO RISK and NO OBLIGATION to buy. CLICK HERE for offer
Linux Journal: delivering readers the advice and inspiration they need to get the most out of their Linux systems since 1994.
Sorry, offer available in the US only. International orders, click here.
Subscribe now!
The Latest
Featured Videos
In case you were wondering about the fun side of Linux World Expo, we thought we'd give you a peek at our shenanigans. We at Linux Journal love what we do so much, that we can't help but have a ball wherever we go.
The X Window System is a magnificent platform for many uses, but using it to run an application over a slow network is nearly impossible. This is an introduction to NX, a technology that makes remote applications fly even over commodity internet.
Recently Popular
From the Magazine
September 2008, #173
Feeling a bit like a Thermian? Never give up, never surrender! Someday, you could go from underdog to top dog. Just take a look at a few of the underdogs we highlight in this issue: Mutt, djbdns, Nginix, Gentoo, Xara and the program voted mostly likely to fail just a few years back—Firefox. If Firefox not radical enough for you, check out Chef Marcel's column for some more alternatives. Having trouble mapping your program data to your relational database? If so, Rueven Lerner shows you some tricks in his At The Forge column.
Need to run GUI applications on your server in the next state? In his Paranoid Penguin column, Mick Bauer shows you how to do it securely. Kyle Rankin keeps hacking and slashing and shows you a few split screen secrets you may not be familiar with. Finally, we all know what happens next February, but only Doc knows what happens afterward.
Delicious
Digg
Reddit
Newsvine
Technorati







Re: Resources for Developing for Windows on Linux
On June 13th, 2004 Guenhwyvar (not verified) says:
My compiler had an error of too few arguments and I had to modify the error box as follows:
if (!RegisterClass(&wndclass)) {
MessageBox(NULL,TEXT("This program requires Windows NT."),NULL,MB_OK);
return 0;
}
Per the MSDN web page:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserint
Re: Resources for Developing for Windows on Linux
On June 13th, 2004 Guenhwyvar (not verified) says:
Sorry about the URL, make it:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/windowing/dialogboxes/dialogboxreference/dialogboxfunctions/messagebox.asp