stamen

Stamen - static menu generator
git clone git://git.dimitrijedobrota.com/stamen.git
Log | Files | Refs | README | LICENSE

stamen.hpp (302B)


      1 #ifndef STAMEN_STAMEN_HPP
      2 #define STAMEN_STAMEN_HPP
      3 
      4 #include "stamen.h"
      5 
      6 namespace stamen {
      7 
      8 using callback_f = stamen_callback_f;
      9 using display_f = stamen_display_f;
     10 using item_t = stamen_item_t;
     11 
     12 int builtin_display(const char *title, const item_t itemv[], int size);
     13 
     14 } // namespace stamen
     15 
     16 #endif