diff options
Diffstat (limited to 'zbar/window/null.c')
-rw-r--r-- | zbar/window/null.c | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/zbar/window/null.c b/zbar/window/null.c new file mode 100644 index 0000000..7d30e53 --- /dev/null +++ b/zbar/window/null.c @@ -0,0 +1,88 @@ +/*------------------------------------------------------------------------ + * Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net> + * + * This file is part of the ZBar Bar Code Reader. + * + * The ZBar Bar Code Reader is free software; you can redistribute it + * and/or modify it under the terms of the GNU Lesser Public License as + * published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * The ZBar Bar Code Reader is distributed in the hope that it will be + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser Public License for more details. + * + * You should have received a copy of the GNU Lesser Public License + * along with the ZBar Bar Code Reader; if not, write to the Free + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA + * + * http://sourceforge.net/projects/zbar + *------------------------------------------------------------------------*/ + +#include "window.h" + +static inline int null_error(void *m, const char *func) +{ + return (err_capture(m, SEV_ERROR, ZBAR_ERR_UNSUPPORTED, func, + "not compiled with output window support")); +} + +int _zbar_window_attach(zbar_window_t *w, void *display, unsigned long win) +{ + return (null_error(w, __func__)); +} + +int _zbar_window_expose(zbar_window_t *w, int x, int y, int width, int height) +{ + return (null_error(w, __func__)); +} + +int _zbar_window_resize(zbar_window_t *w) +{ + return (0); +} + +int _zbar_window_clear(zbar_window_t *w) +{ + return (null_error(w, __func__)); +} + +int _zbar_window_begin(zbar_window_t *w) +{ + return (null_error(w, __func__)); +} + +int _zbar_window_end(zbar_window_t *w) +{ + return (null_error(w, __func__)); +} + +int _zbar_window_draw_marker(zbar_window_t *w, uint32_t rgb, point_t p) +{ + return (null_error(w, __func__)); +} + +int _zbar_window_draw_polygon(zbar_window_t *w, uint32_t rgb, + const point_t *pts, int npts) +{ + return (null_error(w, __func__)); +} + +int _zbar_window_draw_text(zbar_window_t *w, uint32_t rgb, point_t p, + const char *text) +{ + return (null_error(w, __func__)); +} + +int _zbar_window_fill_rect(zbar_window_t *w, uint32_t rgb, point_t org, + point_t size) +{ + return (null_error(w, __func__)); +} + +int _zbar_window_draw_logo(zbar_window_t *w) +{ + return (null_error(w, __func__)); +} |