diff options
| author | Franklin Wei <frankhwei536@gmail.com> | 2015-02-28 20:46:37 -0500 |
|---|---|---|
| committer | Franklin Wei <frankhwei536@gmail.com> | 2015-02-28 20:46:37 -0500 |
| commit | e81f651b15be15624d7184e1823bf5b623f11604 (patch) | |
| tree | fda3d16b0245dd83f367f523042f02a0e1b14db0 /apps/plugin.h | |
| parent | 2dc45e8cac33313e847f6097cbe2ba3bb3ceab2a (diff) | |
| download | kappa-e81f651b15be15624d7184e1823bf5b623f11604.zip kappa-e81f651b15be15624d7184e1823bf5b623f11604.tar.gz kappa-e81f651b15be15624d7184e1823bf5b623f11604.tar.bz2 kappa-e81f651b15be15624d7184e1823bf5b623f11604.tar.xz | |
stuff
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index e9c790c..4eb7066 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -2,6 +2,7 @@ #define _PLUGIN_H_ #include <stddef.h> +#include <stdint.h> #include <stdlib.h> #include <stdio.h> #include "gfx.h" @@ -41,7 +42,7 @@ struct plugin_api { void (*lcd_set_background)(unsigned foreground); unsigned (*lcd_get_background)(void); - void (*srand)(unsigned int seed); + void (*srand)(uint64_t seed); unsigned int (*rand)(void); void (*lcd_filltriangle)(int, int, int, int, int, int); |