mirror of
https://github.com/agdsn/ancient-weatherstation.git
synced 2026-06-19 23:07:59 +00:00
Working on charts
git-svn-id: file:///home/jan/tmp/wetterstation/trunk@76 dd492736-c11a-0410-ad51-8c26713eaf7f
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
|
||||
|
||||
|
||||
typedef struct pix_list *pix_list_ptr;
|
||||
typedef struct pix_list {
|
||||
pix_list_ptr next;
|
||||
int x_pix_coord;
|
||||
int value_count;
|
||||
int value_sum;
|
||||
} pix_list_t;
|
||||
|
||||
|
||||
|
||||
/* Holt die Liste mit den Daten fuer das Bild.
|
||||
* 1. Argument: die effektive Breite des Bereiches in dem gezeichnet werden soll
|
||||
*/
|
||||
pix_list_ptr get_pix_list(int );
|
||||
Reference in New Issue
Block a user