#ifndef _wbinclude_h_
#define _wbinclude_h_

#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/Intrinsic.h>  /* include all the intrinsic headers */
                            /* includes XToolkit definitions     */
#include <X11/Xatom.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <ctype.h>
#include <X11/cursorfont.h> /* allows cursor change when window is entered */
#include <X11/Composite.h>  /* include composite widget class header files */
#include <X11/StringDefs.h> /* string definitions for things like "XtNwidth" */

#include <X11/Xresource.h>
#include <X11/Shell.h>
#include <X11/AsciiText.h>  /* for asciiStringWidgetClass widgets */

#include <X11/Box.h>        /* include box widget class header files */
#include <X11/Form.h>       /* not only includes the Form widget defs */
                            /* but also the constraint defs           */

#include <X11/Command.h>    /* include command widget class header file */
#include <X11/Label.h>      /* include label widget class header files  */

#include <X11/VPaned.h>     /* include vPaned widget class header files */
#include <X11/Dialog.h>     /* include dialog widget class header files */
#include <X11/Scroll.h>  /* include scrollbar widget class header files */
#include <X11/Text.h>       /* include text widget class header files */


#define VOIDP  char *
typedef void (*VOID_FUNCPTR) ();

#include "general.h"
#include "wbnode.h"
#include "wbnlist.h"
#include "widget-builder.h"
#include "mailbuffer.h"
#include "editwidget.h"
#include "wbform.h"
#include "wbbox.h"
#include "movewidget.h"
#include "resizewidget.h"
#include "saveccode.h"
#include "readmfile.h"
#include "savemfile.h"
#include "videostuff.h"
#include "wbasciitext.h"
#include "wbblankline.h"
#include "wbbutton.h"
#include "wblabel.h"
#include "wbmfield.h"
#include "wbscrollbar.h"
#include "wbvideo.h"

#if (WBDEBUG == 1)
#define WBdebug(prcall) prcall
#else
#define WBdebug(prcall) 
#endif

#if (WBDEBUG2 == 1)
#define WBdebug2(prcall) prcall
#else
#define WBdebug2(prcall) 
#endif

#define OR ||

/***************************************************************************/
#endif    /* end of ifndef _wbinclude_h_  :: DO NOT WRITE BELOW THIS LINE. */
