Subversion Repositories Kolibri OS

Rev

Rev 7807 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7807 Rev 9602
1
#ifndef INCLUDE_SYSTEM_H
1
#ifndef INCLUDE_SYSTEM_H
2
#define INCLUDE_SYSTEM_H
2
#define INCLUDE_SYSTEM_H
3
 
3
 
4
:struct COLORS {
4
:struct COLORS {
5
dword
5
dword
6
	nonset1,
6
	nonset1,
7
	taskbar_color,
7
	taskbar_color,
8
	work_dark,
8
	dark,
9
	work_light,
9
	light,
10
	window_title,
10
	window_title,
11
	work,
11
	work,
12
	button,
12
	button,
13
	button_text,
13
	button_text,
14
	work_text,
14
	work_text,
15
	work_graph;
15
	line;
16
	void get();
16
	void get();
17
} sc;
17
} sc;
18
 
18
 
19
:void COLORS::get()
19
:void COLORS::get()
20
{
20
{
21
	EAX = 48;
21
	EAX = 48;
22
	EBX = 3;
22
	EBX = 3;
23
	ECX = #nonset1;
23
	ECX = #nonset1;
24
	EDX = 40;
24
	EDX = 40;
25
	$int 0x40
25
	$int 0x40
26
}
26
}
27
 
27
 
28
#endif
28
#endif