- Timestamp:
- 2007-06-20T20:53:19Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6765c07
- Parents:
- 84947a4
- Location:
- uspace/fb
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/fb/ega.h
r84947a4 r0eb58f1 35 35 */ 36 36 37 #ifndef _EGA_H_38 #define _EGA_H_37 #ifndef FB_EGA_H_ 38 #define FB_EGA_H_ 39 39 40 int ega_init(void);40 extern int ega_init(void); 41 41 42 42 #endif -
uspace/fb/fb.h
r84947a4 r0eb58f1 34 34 */ 35 35 36 #ifndef _FB_H_37 #define _FB_H_36 #ifndef FB_FB_H_ 37 #define FB_FB_H_ 38 38 39 typedef void (* putpixel_cb_t)(void *, unsigned int, unsigned int, int);39 typedef void (* putpixel_cb_t)(void *, unsigned int, unsigned int, int); 40 40 41 int fb_init(void);41 extern int fb_init(void); 42 42 43 43 #endif … … 45 45 /** @} 46 46 */ 47 -
uspace/fb/font-8x16.h
r84947a4 r0eb58f1 27 27 */ 28 28 29 #ifndef __FONT_8X16_H__30 #define __FONT_8X16_H__29 #ifndef FB_FONT_8X16_H_ 30 #define FB_FONT_8X16_H_ 31 31 32 #define FONT_GLIPHS 25632 #define FONT_GLIPHS 256 33 33 #define FONT_SCANLINES 16 34 34 -
uspace/fb/main.h
r84947a4 r0eb58f1 27 27 */ 28 28 29 #ifndef __MAIN_H_30 #define __MAIN_H_29 #ifndef FB_MAIN_H_ 30 #define FB_MAIN_H_ 31 31 32 void receive_comm_area(ipc_callid_t callid, ipc_call_t *call, void **area);32 extern void receive_comm_area(ipc_callid_t, ipc_call_t *, void **); 33 33 34 34 #endif -
uspace/fb/ppm.h
r84947a4 r0eb58f1 27 27 */ 28 28 29 #ifndef _PPM_H_30 #define _PPM_H_29 #ifndef FB_PPM_H_ 30 #define FB_PPM_H_ 31 31 32 32 #include "fb.h" 33 33 34 int ppm_draw(unsigned char *data, size_t datasz, unsigned int sx, 35 unsigned int sy, 36 unsigned int maxwidth, unsigned int maxheight, 37 putpixel_cb_t fnc,void *); 38 int ppm_get_data(unsigned char *data, size_t dtsz, unsigned int *width, unsigned int *height); 34 extern int ppm_draw(unsigned char *, size_t, unsigned int, unsigned int, 35 unsigned int, unsigned int, putpixel_cb_t, void *); 36 extern int ppm_get_data(unsigned char *, size_t, unsigned int *, unsigned int *); 39 37 40 38 #endif -
uspace/fb/sysio.h
r84947a4 r0eb58f1 35 35 */ 36 36 37 #ifndef _SYSIO_H_38 #define _SYSIO_H_37 #ifndef FB_SYSIO_H_ 38 #define FB_SYSIO_H_ 39 39 40 void sysio_init(void);40 extern void sysio_init(void); 41 41 42 42 #endif … … 44 44 /** @} 45 45 */ 46
Note:
See TracChangeset
for help on using the changeset viewer.
