Last updated: 18. 1.1998, 17:13
<* +M2EXTENSIONS *>
<* +M2EXTENSIONS *>
DEFINITION MODULE PopFile;
(*------------------------------------------
POPFILE.C -- Popup Editor File Functions
------------------------------------------*)
IMPORT Windows;
IMPORT FIO;
TYPE
FILE = FIO.File;
(*++++****************************************************************)
PROCEDURE Initialize (hwnd : Windows.HWND);
(*********************************************************************)
(*++++****************************************************************)
PROCEDURE OpenDlg (hwnd : Windows.HWND;
pstrFileName : Windows.PSTR;
pstrTitleName : Windows.PSTR) : Windows.BOOL;
(*********************************************************************)
(*++++****************************************************************)
PROCEDURE SaveDlg (hwnd : Windows.HWND;
pstrFileName : Windows.PSTR;
pstrTitleName: Windows.PSTR) : Windows.BOOL;
(*********************************************************************)
(*++++****************************************************************)
PROCEDURE Length (file : FILE) : Windows.LONG;
(*********************************************************************)
(*++++****************************************************************)
PROCEDURE Read (hwndEdit : Windows.HWND;
pstrFileName: Windows.PSTR) : Windows.BOOL;
(*********************************************************************)
(*++++****************************************************************)
PROCEDURE Write (hwndEdit : Windows.HWND;
pstrFileName : Windows.PSTR ) : Windows.BOOL;
(*********************************************************************)
END PopFile.