请帮我调试一个程序(显示两个窗口)

bloodsucker 2004-08-05 02:37:12
// DEMO2_5.CPP - Creates two windows based on the same
// window class

// INCLUDES ///////////////////////////////////////////////
#define WIN32_LEAN_AND_MEAN // just say no to MFC

#include <windows.h> // include all the windows headers
#include <windowsx.h> // include useful macros
#include <stdio.h>
#include <math.h>

// DEFINES ////////////////////////////////////////////////

// defines for windows
#define WINDOW_CLASS_NAME "WINCLASS1"

// GLOBALS ////////////////////////////////////////////////


// FUNCTIONS //////////////////////////////////////////////
LRESULT CALLBACK WindowProc(HWND hwnd,
UINT msg,
WPARAM wparam,
LPARAM lparam)
{
// this is the main message handler of the system
PAINTSTRUCT ps; // used in WM_PAINT
HDC hdc; // handle to a device context

// what is the message
switch(msg)
{
case WM_CREATE:
{
// do initialization stuff here

// return success
return(0);
} break;

case WM_PAINT:
{
// simply validate the window
hdc = BeginPaint(hwnd,&ps);
// you would do all your painting here
EndPaint(hwnd,&ps);

// return success
return(0);
} break;

case WM_DESTROY:
{
// kill the application, this sends a WM_QUIT message
PostQuitMessage(0);

// return success
return(0);
} break;

default:break;

} // end switch

// process any messages that we didn't take care of
return (DefWindowProc(hwnd, msg, wparam, lparam));

} // end WinProc

// WINMAIN ////////////////////////////////////////////////
int WINAPI WinMain( HINSTANCE hinstance,
HINSTANCE hprevinstance,
LPSTR lpcmdline,
int ncmdshow)
{

WNDCLASSEX winclass; // this will hold the class we create
HWND hwnd; // generic window handle
MSG msg; // generic message

// first fill in the window class stucture
winclass.cbSize = sizeof(WNDCLASSEX);
winclass.style = CS_DBLCLKS | CS_OWNDC |
CS_HREDRAW | CS_VREDRAW;
winclass.lpfnWndProc = WindowProc;
winclass.cbClsExtra = 0;
winclass.cbWndExtra = 0;
winclass.hInstance = hinstance;
winclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
winclass.hCursor = LoadCursor(NULL, IDC_ARROW);
winclass.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
winclass.lpszMenuName = NULL;
winclass.lpszClassName = WINDOW_CLASS_NAME;
winclass.hIconSm = LoadIcon(NULL, IDI_APPLICATION);

WNDCLASSEX winclass2; // this will hold the class we create
HWND hwnd2; // generic window handle
MSG msg2; // generic message

// first fill in the window class stucture
winclass2.cbSize = sizeof(WNDCLASSEX);
winclass2.style = CS_DBLCLKS | CS_OWNDC |
CS_HREDRAW | CS_VREDRAW;
winclass2.lpfnWndProc = WindowProc;
winclass2.cbClsExtra = 0;
winclass2.cbWndExtra = 0;
winclass2.hInstance = hinstance;
winclass2.hIcon = LoadIcon(NULL, IDI_APPLICATION);
winclass2.hCursor = LoadCursor(NULL, IDC_ARROW);
winclass2.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
winclass2.lpszMenuName = NULL;
winclass2.lpszClassName = WINDOW_CLASS_NAME;
winclass2.hIconSm = LoadIcon(NULL, IDI_APPLICATION);

// register the window class
if (!RegisterClassEx(&winclass))
return(0);

// create the first window
if (!(hwnd = CreateWindowEx(NULL, // extended style
WINDOW_CLASS_NAME, // class
"Window 1 Based on WINCLASS1", // title
WS_OVERLAPPEDWINDOW | WS_VISIBLE,
0,0, // initial x,y
400,400, // initial width, height
NULL, // handle to parent
NULL, // handle to menu
hinstance,// instance of this application
NULL))) // extra creation parms
return(0);

// create the second window
if (!(hwnd2 = CreateWindowEx(NULL, // extended style
WINDOW_CLASS_NAME, // class
"Window 2 Also Based on WINCLASS1", // title
WS_OVERLAPPEDWINDOW | WS_VISIBLE,
100,100, // initial x,y
400,400, // initial width, height
NULL, // handle to parent
NULL, // handle to menu
hinstance,// instance of this application
NULL))) // extra creation parms
return(0);

// enter main event loop, but this time we use PeekMessage()
// instead of GetMessage() to retrieve messages
while(TRUE)
{
// test if there is a message in queue, if so get it
if (PeekMessage(&msg,NULL,0,0,PM_REMOVE)&&
PeekMessage(&msg2,NULL,0,0,PM_REMOVE))
{
// test if this is a quit
if (msg.message && msg2.message == WM_QUIT)
break;

// translate any accelerator keys
TranslateMessage(&msg);

// send the message to the window proc
DispatchMessage(&msg);
} // end if

// main game processing goes here

} // end while

// return to Windows like this
return(msg.wParam);

} // end WinMain

///////////////////////////////////////////////////////////



Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/Demo2_5.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.

Demo2_5.exe - 2 error(s), 0 warning(s)
问题1:遇到上面的编译错误怎么办?
问题2:还有当关闭两个窗口中的任意一个,另一个也随之关闭
应用程序就此结束运行,怎么才能可以一次仅关掉一个窗口?
两个都关掉应用程序才结束运行。
...全文
190 6 打赏 收藏 转发到动态 举报
写回复
用AI写文章
6 条回复
切换为时间正序
请发表友善的回复…
发表回复
useresu 2004-10-05
  • 打赏
  • 举报
回复
想要只关一个窗口,要修改winproc(),想不退出程序,当接受WM_DESTROY的时候,就不要调PostQuitMessage(0);因为它将关闭整个程序对象。

case WM_DESTROY:
{
// kill the application, this sends a WM_QUIT message
if hwnd!=hwnd2
PostQuitMessage(0);
}
这样当关掉窗口为hwnd2的时候就不会关掉hwnd了。
iwdc 2004-10-03
  • 打赏
  • 举报
回复
另外,楼上 Daniel22_cn(犭貝戔) 这位兄弟的名字很有个性
也顶你一下 ;)
iwdc 2004-10-03
  • 打赏
  • 举报
回复
帮忙顶
Daniel22_cn 2004-08-05
  • 打赏
  • 举报
回复
subsystem:windows/incremental:yes中间少一个空格
变成
subsystem:windows /incremental:yes
bloodsucker 2004-08-05
  • 打赏
  • 举报
回复
还是不行啊!
Linking...
LINK : fatal error LNK1117: syntax error in option "subsystem:windows/incremental:yes"
Error executing link.exe.

在装载Direct8时,我把 工具/选择/目录include files 下的路径改成(目的是执行游戏
程序是用):
e:\direct8\include
e:\mircorsoft visual stdio\VC98\include
Library files :改成:
e:\direct8\LIB
e:\mircorsoft visual stdio\VC98\LIB
是不是这个地方被我修改错了?
Kudeet 2004-08-05
  • 打赏
  • 举报
回复
试试看下面的方法:

在Project中的Setting中,选Link选项,下面的文本框里把/subsystem:console改为/subsystem:windows

16,472

社区成员

发帖
与我相关
我的任务
社区描述
VC/MFC相关问题讨论
社区管理员
  • 基础类社区
  • Web++
  • encoderlee
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

        VC/MFC社区版块或许是CSDN最“古老”的版块了,记忆之中,与CSDN的年龄几乎差不多。随着时间的推移,MFC技术渐渐的偏离了开发主流,若干年之后的今天,当我们面对着微软的这个经典之笔,内心充满着敬意,那些曾经的记忆,可以说代表着二十年前曾经的辉煌……
        向经典致敬,或许是老一代程序员内心里面难以释怀的感受。互联网大行其道的今天,我们期待着MFC技术能够恢复其曾经的辉煌,或许这个期待会永远成为一种“梦想”,或许一切皆有可能……
        我们希望这个版块可以很好的适配Web时代,期待更好的互联网技术能够使得MFC技术框架得以重现活力,……

试试用AI创作助手写篇文章吧