ISpellCheck.h
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:0k
源码类别:

DNA

开发平台:

Visual C++

  1. #ifndef __ICheckSpell_H__
  2. #define __ICheckSpell_H__
  3. #include "Unknwn.h"
  4. #ifndef String
  5. typedef unsigned short *String;
  6. #endif
  7. // {54BF6569-1007-11D1-B0AA-444553540000}
  8. extern "C" const GUID IID_SpellCheck;
  9. class ISpellCheck : public IUnknown 
  10. {
  11. public : 
  12. virtual HRESULT __stdcall CheckWord(String, String) = 0;
  13. };
  14. #endif // __ISpellCheck_H__