Username/Email:  Password: 
TwitterFacebookFlickrRSS

Resources for “Developing for Windows on Linux”

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.linuxjournal.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

______________________

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Re: Resources for Developing for Windows on Linux

Guenhwyvar's picture

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/w...

Re: Resources for Developing for Windows on Linux

Guenhwyvar's picture