view src/rovascope/drawing.h @ 1198:bde384804637 trunk

Fix division by 32767, should be 32768. Reported by Raphael Doursenaud, closes #977.
author William Pitcock <nenolod@atheme-project.org>
date Sun, 01 Jul 2007 07:01:39 -0500
parents 290588854a9d
children
line wrap: on
line source

#include <glib.h>

#ifndef PN_DRAWING_H
#define PN_DRAWING_H

void pn_draw_dot (guint x, guint y, guchar value);
void pn_draw_line (guint _x0, guint _y0, guint _x1, guint _y1, guchar value);

#endif