Subversion Repositories Kolibri OS

Rev

Rev 9552 | Rev 9620 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9552 Rev 9558
Line 1... Line -...
1
#ifndef KOLIBRI_GB_H 
-
 
2
#define KOLIBRI_GB_H
-
 
Line 3... Line 1...
3
 
1
#pragma pack(push, 1)
4
#pragma pack(push, 1)
2
typedef struct
5
typedef struct
3
{
6
{
4
int  w;
Line 17... Line 15...
17
void gb_rect(GB_BMP *b, int x, int y, int w, int h, unsigned c);
15
void gb_bar(GB_BMP *b, int x, int y, int w, int h, unsigned c);
18
void gb_bar(GB_BMP *b, int x, int y, int w, int h, unsigned c);
16
void gb_circle(GB_BMP *b, int x, int y, int r, unsigned c);
19
void gb_circle(GB_BMP *b, int x, int y, int r, unsigned c);
17
void gb_image_set(GB_BMP *b_dest, int x_d, int y_d, GB_BMP *b_src, int x_s, int y_s, int w, int h);
20
void gb_image_set(GB_BMP *b_dest, int x_d, int y_d, GB_BMP *b_src, int x_s, int y_s, int w, int h);
18
void gb_image_set_t(GB_BMP *b_dest, int x_d, int y_d, GB_BMP *b_src, int x_s, int y_s, int w, int h, unsigned c);
21
void gb_image_set_t(GB_BMP *b_dest, int x_d, int y_d, GB_BMP *b_src, int x_s, int y_s, int w, int h, unsigned c);
19
22
 
-
 
23
#endif // KOLIBRI_GB_H
-
 
24
20