tool.h
上传用户:hyb6888
上传日期:2016-01-24
资源大小:5186k
文件大小:1k
源码类别:

输入法编程

开发平台:

Visual C++

  1. // loadmylib.h: interface for the loadmylib class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(defmytool)
  5. #define defmytool
  6. #include "windows.h"
  7. #include "stdio.h"
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. class LinkStr  
  12. {
  13. public:
  14. char str[5];
  15. LinkStr *Next;
  16. LinkStr();
  17. ~LinkStr();
  18. };
  19. //供扩展代码建议扩展识别用
  20. class tool  
  21. {
  22.  
  23. public:
  24. tool();
  25. long NodeNum;
  26. LinkStr linkstrHead[256];
  27. int OutExCode(HANDLE outfp);
  28. int InsertStr(char *ss);
  29. virtual ~tool();
  30. long TranChar(char *fileName,long num,char *cc,char *tranCh);
  31. };
  32. #endif // !defined(defmytool)