/* "STUBS" */



#include "defs.h"           /* for Ep, ED    */
#include "null.h"

#define MYDEBUG 1
#include "debug.h"

Prototype void * currentmenu  (void); /* muss neu besetzt werden bei jeder Veraenderung des aktuellen Textes */
Prototype void * currenthash  (void); /* muss neu besetzt werden bei jeder Veraenderung des aktuellen Textes */
Prototype void * currentwindow(void); /* muss neu besetzt werden bei jeder Veraenderung des aktuellen Textes */

Prototype void	 init_structures (void);


#if 0

void * onlymenu  = NULL;

void * currentmenu (void)
{
    /* return(onlymenu); */

    if ((Ep == NULL) || (Ep->menustrip == NULL)) {
	return (get_menustrip (NULL));
    } /* if */
    return (Ep->menustrip);
} /* currentmenu */
#endif

#if 0

void * onlyhash  = NULL;

void * currenthash(void)
{
    /* return(onlyhash); */

    if ((Ep == NULL) || (Ep->keytable == NULL)) {
	return (get_keytable (NULL));
    } /* if */
    return (Ep->keytable);
} /* currenthash */
#endif

#if 0
void * currentwindow(void)
{
    return (Ep->win);
} /* currentwindow */
#endif

void init_structures (void)
{


#if 1
    /* onlymenu = */ new_menustrip ("default",1);
#endif



#if 1
    /* onlyhash = */ new_keytable  ("default",1);
#endif


} /* init_structures */

#if 0
void init_menustrips(void) {
}
void exit_menustrips(void) {
}

#endif
