Subversion Repositories HelenOS-historic

Rev

Rev 1552 | Rev 1646 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1552 Rev 1558
1
 
1
 
2
 
2
 
3
#include <arch/types.h>
3
#include <arch/types.h>
4
#include <types.h>
4
#include <types.h>
5
 
5
 
6
#ifndef __libc__FB_H__
6
#ifndef __libc__FB_H__
7
#define __libc__FB_H__
7
#define __libc__FB_H__
8
 
8
 
9
#define FB_PUTCHAR           1025
9
#define FB_PUTCHAR           1025
10
#define FB_CLEAR             1026
10
#define FB_CLEAR             1026
11
#define FB_GET_CSIZE         1027
11
#define FB_GET_CSIZE         1027
12
#define FB_CURSOR_VISIBILITY 1028
12
#define FB_CURSOR_VISIBILITY 1028
13
#define FB_CURSOR_GOTO       1029
13
#define FB_CURSOR_GOTO       1029
14
#define FB_SCROLL            1030
14
#define FB_SCROLL            1030
15
#define FB_VIEWPORT_SWITCH   1031
15
#define FB_VIEWPORT_SWITCH   1031
16
#define FB_VIEWPORT_CREATE   1032
16
#define FB_VIEWPORT_CREATE   1032
17
#define FB_VIEWPORT_DELETE   1033
17
#define FB_VIEWPORT_DELETE   1033
18
#define FB_SET_STYLE         1034
18
#define FB_SET_STYLE         1034
19
#define FB_GET_RESOLUTION    1035
19
#define FB_GET_RESOLUTION    1035
20
#define FB_DRAW_TEXT_DATA    1036
20
#define FB_DRAW_TEXT_DATA    1036
21
#define FB_FLUSH             1037
21
#define FB_FLUSH             1037
22
 
22
 
23
#define FB_DRAW_PPM          1038
23
#define FB_DRAW_PPM          1038
24
#define FB_PREPARE_SHM       1039
24
#define FB_PREPARE_SHM       1039
25
#define FB_DROP_SHM          1040
25
#define FB_DROP_SHM          1040
26
#define FB_SHM2PIXMAP        1041
26
#define FB_SHM2PIXMAP        1041
27
 
27
 
28
#define FB_VP_DRAW_PIXMAP    1042
28
#define FB_VP_DRAW_PIXMAP    1042
29
#define FB_VP2PIXMAP         1043
29
#define FB_VP2PIXMAP         1043
30
#define FB_DROP_PIXMAP       1044
30
#define FB_DROP_PIXMAP       1044
31
 
31
 
-
 
32
#define FB_TRANS_PUTCHAR     1045
-
 
33
 
32
#endif
34
#endif
33
 
35