/* button.c - A simple button type */

#include <stdio.h>
#include <stdlib.h>

#include <X11/Xlib.h>

#include "symrad.h"


/* ------------------------------------------------------------------------ */
void button_Expose(Button, XEvent *)
{

}

/* ------------------------------------------------------------------------ */
void button_Enter(Button, XEvent *)
{

}

/* ------------------------------------------------------------------------ */
pvoid button_Leave(Button, XEvent *);
{

}

/* ------------------------------------------------------------------------ */
void button_Press(Button, XEvent *)
{

}

/* ------------------------------------------------------------------------ */
void button_Release(Button, XEvent *)
{

}

/* ------------------------------------------------------------------------ */
Button button_Create(Display *, Window, char *, int, int, int, int)
{

}

/* ------------------------------------------------------------------------ */
void button_Destroy(Button)
{

}
