ISpellCheck.h
资源名称:COM 原理与应用.rar [点击查看]
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:0k
源码类别:
DNA
开发平台:
Visual C++
- #ifndef __ICheckSpell_H__
- #define __ICheckSpell_H__
- #include "Unknwn.h"
- #ifndef String
- typedef unsigned short *String;
- #endif
- // {54BF6569-1007-11D1-B0AA-444553540000}
- extern "C" const GUID IID_SpellCheck;
- class ISpellCheck : public IUnknown
- {
- public :
- virtual HRESULT __stdcall CheckWord(String, String) = 0;
- };
- #endif // __ISpellCheck_H__