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

游戏

开发平台:

Visual C++

  1. #ifndef _SCREENCONTROL_
  2. #define _SCREENCONTROL_
  3. #include "os.h"
  4. #ifdef OS_DOS
  5. typedef UCHAR * screen_ptr;
  6. #endif
  7. #ifdef OS_WINDOWS
  8. typedef HDC screen_ptr;
  9. #endif
  10. void Init_Screen(short width, short height);
  11. void Activate_Graphics();
  12. void End_Graphics();
  13. void Change_Screen(short width, short height);
  14. void Set_Screen_Window(screen_ptr new_screen_ptr);
  15. screen_ptr Get_Screen_Window();
  16. #ifdef OS_WINDOWS
  17. void Set_Stretch_Factor(short new_factor);
  18. short Get_Stretch_Factor();
  19. #endif
  20. #endif