Subversion Repositories Kolibri OS

Rev

Rev 7806 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

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