tool.h
上传用户:hyb6888
上传日期:2016-01-24
资源大小:5186k
文件大小:1k
- // loadmylib.h: interface for the loadmylib class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(defmytool)
- #define defmytool
- #include "windows.h"
- #include "stdio.h"
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class LinkStr
- {
- public:
- char str[5];
- LinkStr *Next;
- LinkStr();
- ~LinkStr();
- };
- //供扩展代码建议扩展识别用
- class tool
- {
-
- public:
- tool();
- long NodeNum;
- LinkStr linkstrHead[256];
- int OutExCode(HANDLE outfp);
- int InsertStr(char *ss);
- virtual ~tool();
- long TranChar(char *fileName,long num,char *cc,char *tranCh);
- };
- #endif // !defined(defmytool)