Rev 3386 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3386 | Rev 4153 | ||
---|---|---|---|
Line 27... | Line 27... | ||
27 | */ |
27 | */ |
28 | 28 | ||
29 | /** @addtogroup fb |
29 | /** @addtogroup fb |
30 | * @ingroup fbs |
30 | * @ingroup fbs |
31 | * @{ |
31 | * @{ |
32 | */ |
32 | */ |
33 | /** @file |
33 | /** @file |
34 | */ |
34 | */ |
35 | 35 | ||
36 | #ifndef FB_FB_H_ |
36 | #ifndef FB_FB_H_ |
37 | #define FB_FB_H_ |
37 | #define FB_FB_H_ |
38 | 38 | ||
- | 39 | #include <stdint.h> |
|
- | 40 | ||
39 | typedef void (* putpixel_cb_t)(void *, unsigned int, unsigned int, int); |
41 | typedef void (* putpixel_cb_t)(void *, unsigned int, unsigned int, uint32_t); |
40 | 42 | ||
41 | extern int fb_init(void); |
43 | extern int fb_init(void); |
42 | 44 | ||
43 | #endif |
45 | #endif |
44 | 46 |