root/modules/gui_hexbox.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef HEXBOX_H
   2 #define HEXBOX_H
   3 
   4 #include "flt.h"
   5 
   6 // enforce word alignment
   7 #define HEXBOX_FLAG_WALIGN 0x10
   8 
   9 //#define HEXBOX_FLAG_DECIMAL 0x20
  10 
  11 // Update version if changes are made to the module interface
  12 #define GUI_HEXBOX_VERSION      {1,0}
  13 
  14 typedef struct
  15 {
  16     base_interface_t    base;
  17 
  18     int (*hexbox_init)(int *num, char *title, int flags);
  19 } libhexbox_sym;
  20 
  21 extern libhexbox_sym* libhexbox;
  22 
  23 #endif

/* [<][>][^][v][top][bottom][index][help] */