w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

fb_img.h (308B)


      1 /* $Id$ */
      2 #ifndef fb_img_header
      3 #define fb_img_header
      4 #include "fb.h"
      5 
      6 void fb_image_init();
      7 FB_IMAGE **fb_image_load(char *filename, int w, int h, int n);
      8 void fb_image_set_bg(int r, int g, int b);
      9 int fb_image_clear(int x, int y, int w, int h);
     10 int get_image_size(char *filename, int *w, int *h);
     11 
     12 #endif