kolibrios/programs/cmm/lib/system.h
Kirill Lipatov (Leency) 36e64a3f84 cmm: mass renaming
git-svn-id: svn://kolibrios.org@9602 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-01-09 06:36:16 +00:00

28 lines
317 B
C

#ifndef INCLUDE_SYSTEM_H
#define INCLUDE_SYSTEM_H
:struct COLORS {
dword
nonset1,
taskbar_color,
dark,
light,
window_title,
work,
button,
button_text,
work_text,
line;
void get();
} sc;
:void COLORS::get()
{
EAX = 48;
EBX = 3;
ECX = #nonset1;
EDX = 40;
$int 0x40
}
#endif