Loading
Home ›
Resources for “Developing for Windows on Linux”
Jun 30, 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.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
______________________
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- 100% disappointed with the decision to go all digital.
- Parallel Programming with NVIDIA CUDA
- Readers' Choice Awards 2011
- Validate an E-Mail Address with PHP, the Right Way
- You Need A Budget
- Why Python?
- The Linux powered LAN Gaming House
- Linux-Based X Terminals with XDMCP
- Short Notices: News In Linux Audio
- buena información
3 hours 11 min ago - One important "bucket" that I didn't note (désolé si qqun deja d
4 hours 12 min ago - Gnome3 is such a POS. No one
13 hours 39 min ago - Gnome 3 is the biggest POS
13 hours 50 min ago - I didn't knew this thing by
19 hours 54 min ago - Author's reply
23 hours 18 min ago - Link to modlys
1 day 25 min ago - I use YNAB because of the
1 day 36 min ago - Search
1 day 5 hours ago - Question
1 day 6 hours ago






Comments
Re: Resources for Developing for Windows on Linux
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
Sorry about the URL, make it:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/w...