MFC扩展编程实例

源代码在线查看: readme.wzd

软件大小: 9150 K
上传用户: ccuading
关键词: MFC 扩展 编程实例
下载地址: 免注册下载 普通下载 VIP

相关代码

				/////////////////////////////////////////////////////////////////////
				// Modify Application Class
				/////////////////////////////////////////////////////////////////////
				
				// 1) use ClassWizard to override CWinApp::OnIdle()
				BOOL CWzdApp::OnIdle(LONG lCount) 
				{
				
				// 2) perform cleanup as in this example
					while (!m_TempList.IsEmpty())
					{
						delete m_TempList.RemoveHead();
					}
				
				
					return CWinApp::OnIdle(lCount);
				}
				
				
				/////////////////////////////////////////////////////////////////////
				// From: Visual C++ MFC Programming by Example by John E. Swanke
				// Copyright (C) 1999 jeswanke. All rights reserved.
				/////////////////////////////////////////////////////////////////////
				
							

相关资源