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 -- Free Gift with Subscription
Receive a free digital copy of Linux Journal's System Administration Special Edition as well as instant online access to current and past issues. 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.
Subscribe now!
The Latest
Newsletter
Tech Tip Videos
- Nov-19-09
- Nov-04-09
Recently Popular
From the Magazine
December 2009, #188
If last month's Infrastrucuture issue was too "big" for you then try on this month's Embedded issue. Find out how to use Player for programming mobile robots, build a humidity controller for your root cellar, find out how to reduce the boot time of your embedded system, and if you're new to embedded systems find out the basics that go into one. You can also read about the Beagle Board, the Mesh Potato and a spate of other interestingly named items. And along with our regular columns don't miss our new monthly column: Economy Size Geek.
Delicious
Digg
StumbleUpon
Reddit
Facebook








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
Post new comment