kolibrios/programs/cmm/lib/system.h
Kirill Lipatov (Leency) 2eda7fed5c tinypad: no optim_save by default
eolite: fix crash on put image h<1
cmm: rename colors to the short one "sc"

git-svn-id: svn://kolibrios.org@7806 a494cfbc-eb01-0410-851d-a64ba20cac60
2020-04-17 23:52:24 +00:00

28 lines
343 B
C

#ifndef INCLUDE_SYSTEM_H
#define INCLUDE_SYSTEM_H
:struct COLORS {
dword
nonset1,
taskbar_color,
work_dark,
work_light,
window_title,
work,
work_button,
work_button_text,
work_text,
work_graph;
void get();
} sc;
:void COLORS::get()
{
EAX = 48;
EBX = 3;
ECX = #nonset1;
EDX = 40;
$int 0x40
}
#endif