|
|
|||||||||||||
|
The Games Info Contact About Sean O'Connor |
Make the default browser display a web page
// this is the handle to your application's main window
HWND hMainWindow
// open the web page
ShellExecute(hMainWindow,
"open",
"http://www.windowsgames.co.uk/conquest.html",
NULL, NULL, SW_SHOW);
|