Subversion Repositories HelenOS

Rev

Rev 3343 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3343 Rev 3742
Line 34... Line 34...
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