StdAfx.cpp
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:0k
源码类别:

网格计算

开发平台:

Visual C++

  1. // stdafx.cpp : source file that includes just the standard includes
  2. // trfAgent.pch will be the pre-compiled header
  3. // stdafx.obj will contain the pre-compiled type information
  4. #include "stdafx.h"
  5. void DoEvents(void)
  6. {
  7. MSG msg;
  8. // window message         
  9. while (PeekMessage(&msg,NULL,NULL,NULL,PM_REMOVE))         
  10. {            
  11. TranslateMessage(&msg);            
  12. DispatchMessage(&msg);         
  13. }
  14. }