kolibrios/programs/cmm/lib/system.h
Kirill Lipatov (Leency) 29cc7502e3 CMM: checkbox and morelessbox convex
Eolite: use system colors for some cases, better code for list click
TinyGl better icons

git-svn-id: svn://kolibrios.org@6191 a494cfbc-eb01-0410-851d-a64ba20cac60
2016-02-11 01:07:04 +00:00

34 lines
410 B
C

#ifndef INCLUDE_SYSTEM_H
#define INCLUDE_SYSTEM_H
#print "[include <system.h>]\n"
:struct COLORS {
dword
nonset1,
nonset2,
work_dark,
work_light,
nonset3,
work,
work_button,
work_button_text,
work_text,
work_graph;
void get();
};
:void COLORS::get()
{
EAX = 48;
EBX = 3;
ECX = #nonset1;
EDX = 40;
$int 0x40
}
:struct SYSTEM
{
COLORS color;
} system;
#endif