home *** CD-ROM | disk | FTP | other *** search
- /*----------------------dwedit-----------------------------*/
- /* DOUBLE WINDOW EDIT */
- /* */
- /*DESCRIPTION: Sets up two windows on the console and */
- /* allows for data entry in the windows and number */
- /* checking. */
- /* */
- /*INPUT: */
- /* filename - name for output file */
- /* width1 - width of window 1 */
- /* width2 - width of window 2 */
- /* length - length of windows */
- /* fcheck1 & fcheck2 - functions that check for a */
- /* a valid number. Return 1 for pass, 0 */
- /* for fail. Passing NULL means no check. */
- /* */
- /* USES: Frame, OnCursor, OffCursor */
- /*---------------------------------------------------------*/
-
- dwedit( char *filename, char action, int width1, int width2,
- int length, int (*fcheck1) (const char *),
- int (*fcheck2) (const char *))