summaryrefslogtreecommitdiff
path: root/gpsmon.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2009-02-16 20:53:31 +0000
committerEric S. Raymond <esr@thyrsus.com>2009-02-16 20:53:31 +0000
commit4bf8a8ba7d2d408536a2c64da595c4d002974a11 (patch)
treef504e574b130443d0b5acf998129e6411e6bdbad /gpsmon.h
parentc746a49444a73e372876cb530bd3f11fcea45ee0 (diff)
downloadgpsd-4bf8a8ba7d2d408536a2c64da595c4d002974a11.tar.gz
More method simplification.
Diffstat (limited to 'gpsmon.h')
-rw-r--r--gpsmon.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/gpsmon.h b/gpsmon.h
index 4d2ee289..5b9dac44 100644
--- a/gpsmon.h
+++ b/gpsmon.h
@@ -7,8 +7,7 @@
struct mdevice_t {
/* a device-specific capability table for the monitor */
bool (*initialize)(void); /* paint legends on windows */
- void (*analyze)(unsigned char [], size_t);
- void (*repaint)(void); /* now paint the data */
+ void (*update)(size_t); /* now paint the data */
int (*command)(char[]); /* interpret device-specfic commands */
void (*wrap)(void); /* deallocate storage */
int min_y, min_x; /* space required for device info */