REITP.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- /* =========================================================================
- File: Reitp.h
- Function: Header file for Reitp.c. Exports the DoOpen() and PrintREDoc()
- functions so the Mac version can support the required OpenDoc and Print
- Apple Events.
- ============================================================================ */
- typedef struct _redoc
- {
- HWND hwndRE;
- HWND hwndParent;
- DWORD dwFormat;
- BOOL fReadOnly;
- BOOL fWysiwyg;
- BOOL fWrap;
- BOOL fUpdateEditMenu;
- WPARAM scf;
- HMENU hmenuVerbs;
- LPRICHEDITOLE preole;
- struct _itpcall * pitpcall;
- LPSTORAGE pstg;
- ULONG cItem;
- PRINTDLG pd;
- HDC hdcTarget;
- HWND hwndFormatBar;
- FINDREPLACE *pfr;
- TCHAR szFile[256];
- TCHAR szTitle[32];
- } REDOC;
- LRESULT DoOpen(REDOC *predoc, LPSTR szFile, LPSTR szTitle, BOOL fInsert);
- VOID PrintREDoc(REDOC *predoc);