Changeset 0eb58f1 in mainline for uspace/fb


Ignore:
Timestamp:
2007-06-20T20:53:19Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6765c07
Parents:
84947a4
Message:

Cleanup.

Location:
uspace/fb
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • uspace/fb/ega.h

    r84947a4 r0eb58f1  
    3535 */
    3636
    37 #ifndef _EGA_H_
    38 #define _EGA_H_
     37#ifndef FB_EGA_H_
     38#define FB_EGA_H_
    3939
    40 int ega_init(void);
     40extern int ega_init(void);
    4141
    4242#endif
  • uspace/fb/fb.h

    r84947a4 r0eb58f1  
    3434 */
    3535
    36 #ifndef _FB_H_
    37 #define _FB_H_
     36#ifndef FB_FB_H_
     37#define FB_FB_H_
    3838
    39 typedef void (* putpixel_cb_t)(void *,unsigned int, unsigned int, int);
     39typedef void (* putpixel_cb_t)(void *, unsigned int, unsigned int, int);
    4040
    41 int fb_init(void);
     41extern int fb_init(void);
    4242
    4343#endif
     
    4545/** @}
    4646 */
    47 
  • uspace/fb/font-8x16.h

    r84947a4 r0eb58f1  
    2727 */
    2828
    29 #ifndef __FONT_8X16_H__
    30 #define __FONT_8X16_H__
     29#ifndef FB_FONT_8X16_H_
     30#define FB_FONT_8X16_H_
    3131
    32 #define FONT_GLIPHS             256
     32#define FONT_GLIPHS     256
    3333#define FONT_SCANLINES  16
    3434
  • uspace/fb/main.h

    r84947a4 r0eb58f1  
    2727 */
    2828
    29 #ifndef __MAIN_H_
    30 #define __MAIN_H_
     29#ifndef FB_MAIN_H_
     30#define FB_MAIN_H_
    3131
    32 void receive_comm_area(ipc_callid_t callid, ipc_call_t *call, void **area);
     32extern void receive_comm_area(ipc_callid_t, ipc_call_t *, void **);
    3333
    3434#endif
  • uspace/fb/ppm.h

    r84947a4 r0eb58f1  
    2727 */
    2828
    29 #ifndef _PPM_H_
    30 #define _PPM_H_
     29#ifndef FB_PPM_H_
     30#define FB_PPM_H_
    3131
    3232#include "fb.h"
    3333
    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);
     34extern int ppm_draw(unsigned char *, size_t, unsigned int, unsigned int,
     35    unsigned int, unsigned int, putpixel_cb_t, void *);
     36extern int ppm_get_data(unsigned char *, size_t, unsigned int *, unsigned int *);
    3937
    4038#endif
  • uspace/fb/sysio.h

    r84947a4 r0eb58f1  
    3535 */
    3636
    37 #ifndef _SYSIO_H_
    38 #define _SYSIO_H_
     37#ifndef FB_SYSIO_H_
     38#define FB_SYSIO_H_
    3939
    40 void sysio_init(void);
     40extern void sysio_init(void);
    4141
    4242#endif
     
    4444/** @}
    4545 */
    46 
Note: See TracChangeset for help on using the changeset viewer.