REITP.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /* =========================================================================
  2. File: Reitp.h
  3. Function: Header file for Reitp.c. Exports the DoOpen() and PrintREDoc()
  4. functions so the Mac version can support the required OpenDoc and Print
  5. Apple Events.
  6. ============================================================================ */
  7. typedef struct _redoc
  8. {
  9. HWND hwndRE;
  10. HWND hwndParent;
  11. DWORD dwFormat;
  12. BOOL fReadOnly;
  13. BOOL fWysiwyg;
  14. BOOL fWrap;
  15. BOOL fUpdateEditMenu;
  16. WPARAM scf;
  17. HMENU hmenuVerbs;
  18. LPRICHEDITOLE preole;
  19. struct _itpcall * pitpcall;
  20. LPSTORAGE pstg;
  21. ULONG cItem;
  22. PRINTDLG pd;
  23. HDC hdcTarget;
  24. HWND hwndFormatBar;
  25. FINDREPLACE *pfr;
  26. TCHAR szFile[256];
  27. TCHAR szTitle[32];
  28. } REDOC;
  29. LRESULT DoOpen(REDOC *predoc, LPSTR  szFile, LPSTR  szTitle, BOOL  fInsert);
  30. VOID PrintREDoc(REDOC *predoc);