diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-07-18 06:07:25 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-07-18 06:07:25 +0000 |
commit | c4c0f87fce0966c7714cdf872e1a52a86a50ca3a (patch) | |
tree | 8855e6352241b7e1c74148f7c5ac9efb94105960 /w3mimg/w3mimg.h | |
parent | [w3m-dev 03272] Re: w3m-img for framebuffer merged (Re: Re: w3m-img for fram... (diff) | |
download | w3m-c4c0f87fce0966c7714cdf872e1a52a86a50ca3a.tar.gz w3m-c4c0f87fce0966c7714cdf872e1a52a86a50ca3a.zip |
XMakefile (w3mimg/w3mimg): added
(w3img/fb) fixed
* w3mimg/w3mimg.h (w3mimg_open): deleted to avoid compilation warnings
* w3mimg/w3mimg.c: added
* configure (imgobjs): add w3mimg/w3mimg.o
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'w3mimg/w3mimg.h')
-rw-r--r-- | w3mimg/w3mimg.h | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/w3mimg/w3mimg.h b/w3mimg/w3mimg.h index 086b1d5..eb89eda 100644 --- a/w3mimg/w3mimg.h +++ b/w3mimg/w3mimg.h @@ -1,4 +1,4 @@ -/* $Id: w3mimg.h,v 1.1 2002/07/17 20:58:48 ukai Exp $ */ +/* $Id: w3mimg.h,v 1.2 2002/07/18 06:07:25 ukai Exp $ */ #include "config.h" #ifdef USE_W3MIMG_FB @@ -32,21 +32,10 @@ typedef struct _w3mimg_op { } w3mimg_op; #ifdef USE_W3MIMG_X11 -w3mimg_op *w3mimg_x11open(); +extern w3mimg_op *w3mimg_x11open(); #endif #ifdef USE_W3MIMG_FB -w3mimg_op *w3mimg_fbopen(); +extern w3mimg_op *w3mimg_fbopen(); #endif -static w3mimg_op *w3mimg_open() { - w3mimg_op *w_op = NULL; -#ifdef USE_W3MIMG_X11 - if (w_op == NULL) - w_op = w3mimg_x11open(); -#endif -#ifdef USE_W3MIMG_FB - if (w_op == NULL) - w_op = w3mimg_fbopen(); -#endif - return w_op; -} +extern w3mimg_op *w3mimg_open(); |