SpecialFuncs.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*****************************************************************************************
  2. // 特别功能的一些基础函数
  3. // Copyright : Kingsoft 2003
  4. // Author :   Wooy(Wu yue)
  5. // CreateTime: 2003-7-26
  6. ------------------------------------------------------------------------------------------
  7. *****************************************************************************************/
  8. #pragma once
  9. #include "../../../Represent/iRepresent/iRepresentShell.h"
  10. struct KOutputTextParam;
  11. //输出包含tab分格的字符串,可以是多行,返回值表示输出内容共几行
  12. //nLineWidth 的单位是屏幕像素点
  13. //KOutputTextParam::nSkipLine不支持
  14. int OutputTabSplitText(const char* pBuffer, int nCount, int nLineWidth,
  15.    int nFontId, KOutputTextParam* pParam);
  16. //eType:文件类型(bmp,jpg)
  17. //nQuality:图象质量(0-100),只对jpg有意义
  18. void SaveScreenToFile(ScreenFileType eType = SCRFILETYPE_JPG, unsigned int nQuality = 100);
  19. bool SetScrPicPath(const char* szPath);