#ifndef drwiconfnh_H
 #define drwiconfnh_H

#if defined NAMESPACE_DRWIMPC
  namespace DrWimpC {
#endif

#if defined NAMESPACE_OSLIB
  using namespace OSLib;
#endif

typedef struct drw_icon_fn_str        drw_icon_fn_str;

typedef int (*drw_icon_fn)(wimp_w whan,
                           wimp_i icon,
                           wimp_mouse_state buttontype,
                           int mousex,
                           int mousey);

struct drw_icon_fn_str {

wimp_i iconno;
char *iconname;
drw_icon_fn fn;

};

#if defined NAMESPACE_DRWIMPC
  }
#endif

#endif

