/* -- MyDials "Interface" --

	Any improvements would be appreciated.

	(P) 1992, Markus Nick

	---------------------------------------------------------------

	This program is distributed in the hope that it will be useful, 
	but WITHOUT ANY WARRANTY; without even the implied warranty of 
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

	---------------------------------------------------------------

*/

#define __myd2ruby_c__

#include <portab.h>
#include <aes.h>
#include "myd2ruby.h"


#if 0
void do_dial(DIALINFO *di, WORD ed_start)
{


}
#endif


int my2d_find_inifld(tree, start_fld)
OBJECT *tree;
int start_fld;
{
    if (start_fld == 0)
        for (;; start_fld++) {
            register int the_ob_flags = tree[start_fld].ob_flags;
            if (the_ob_flags & EDITABLE)
                return start_fld;
            if (the_ob_flags & LASTOB)
                return 0;
        }
    return start_fld;
}


/* eof */
