ASSERT.H
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:0k
源码类别:

游戏

开发平台:

Visual C++

  1. #ifdef DEBUG
  2. #include <iostream.h>
  3. #include <conio.h>
  4. #include <dos.h>
  5. #include "screen.h"
  6. #include "types.h"
  7. extern int raw_key;
  8. #define Assert(X,Y) 
  9.   if (X)  {         
  10.      setgmode(0x3); 
  11.      cout << Y;     
  12.      delay(1000);   
  13.      raw_key=1;     
  14.   }
  15. #else
  16. #define Assert(X,Y)
  17. #endif