Subversion Repositories shark

Compare Revisions

Regard whitespace Rev 1029 → Rev 1030

/shark/trunk/drivers/input/shark/mcurgrx.c
9,6 → 9,7
* Paolo Gai <pj@gandalf.sssup.it>
* Massimiliano Giorgi <massy@gandalf.sssup.it>
* Luca Abeni <luca@gandalf.sssup.it>
* Tullio Facchinetti <tullio.facchinetti@unipv.it>
* (see the web pages for full authors list)
*
* ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
29,8 → 30,8
#include "../include/drivers/shark_mouse26.h"
 
/* External functions */
extern void grx_getimage(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
extern void grx_putimage(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
extern void grx_getimage(WORD x1, WORD y1, WORD x2, WORD y2, WORD *buf); // Tool
extern void grx_putimage(WORD x1, WORD y1, WORD x2, WORD y2, WORD *buf); // Tool
extern int _mouse_cursor_init(int cmd, void(*my_show_cursor)(int, int), void(*my_restore_cursor)(int, int));
extern void _mouse_cursor_getposition(int *xptr, int *yptr);
 
/shark/trunk/drivers/grx/include/drivers/glib.h
9,6 → 9,7
* Paolo Gai <pj@gandalf.sssup.it>
* Massimiliano Giorgi <massy@gandalf.sssup.it>
* Luca Abeni <luca@gandalf.sssup.it>
* Tullio Facchinetti <tullio.facchinetti@unipv.it>
* (see the web pages for full authors list)
*
* ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
20,11 → 21,11
 
/**
------------
CVS : $Id: glib.h,v 1.1 2003-03-24 13:26:13 giacomo Exp $
CVS : $Id: glib.h,v 1.2 2006-03-09 15:57:59 tullio Exp $
 
File: $File$
Revision: $Revision: 1.1 $
Last update: $Date: 2003-03-24 13:26:13 $
Revision: $Revision: 1.2 $
Last update: $Date: 2006-03-09 15:57:59 $
------------
 
**/
62,8 → 63,8
int grx_close(void);
extern void (*grx_plot)(WORD x, WORD y, DWORD color);
extern DWORD (*grx_getpixel)(WORD x, WORD y);
extern void (*grx_getimage)(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *img);
extern void (*grx_putimage)(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *img);
extern void (*grx_getimage)(WORD x1, WORD y1, WORD x2, WORD y2, WORD *img); // Tool
extern void (*grx_putimage)(WORD x1, WORD y1, WORD x2, WORD y2, WORD *img); // Tool
extern void (*grx_box)(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
extern void (*grx_rect)(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
extern void (*grx_line)(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
/shark/trunk/drivers/grx/glib.c
17,8 → 17,8
 
void (*grx_plot)(WORD x, WORD y, DWORD color);
DWORD (*grx_getpixel)(WORD x, WORD y);
void (*grx_getimage)(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
void (*grx_putimage)(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
void (*grx_getimage)(WORD x1, WORD y1, WORD x2, WORD y2, WORD *buf); // Tool
void (*grx_putimage)(WORD x1, WORD y1, WORD x2, WORD y2, WORD *buf); // Tool
void (*grx_box)(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
void (*grx_rect)(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
void (*grx_line)(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
182,8 → 182,8
grx_box = (void (*)(WORD, WORD, WORD, WORD, DWORD))dummyfun;
grx_text = (void (*)(char *, WORD, WORD, DWORD, DWORD))dummyfun;
grx_line = (void (*)(WORD, WORD, WORD, WORD, DWORD))dummyfun;
grx_putimage = (void (*)(WORD, WORD, WORD, WORD, BYTE *))dummyfun;
grx_getimage = (void (*)(WORD, WORD, WORD, WORD, BYTE *))dummyfun;
grx_putimage = (void (*)(WORD, WORD, WORD, WORD, WORD *))dummyfun; // Tool
grx_getimage = (void (*)(WORD, WORD, WORD, WORD, WORD *))dummyfun; // Tool
break;
}
grx_circle = circle;