#include #include "c_fl_text_buffer.h" TEXTBUFFER new_fl_text_buffer(int rs, int pgs) { Fl_Text_Buffer *tb = new Fl_Text_Buffer(rs, pgs); return tb; } void free_fl_text_buffer(TEXTBUFFER tb) { delete reinterpret_cast(tb); }