Subversion Repositories Kolibri OS

Rev

Rev 2619 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. ;------------------------------------------------------------------------------
  2. align 4
  3. last_active_window      rd 1
  4. prev_active_window      rd 1
  5. active_window_changed   rd 1
  6. app_tab_count           rd 1
  7.  
  8. alt_tab_list_size       rd 1
  9.  
  10. panel_x_pos     rd      1
  11. panel_y_pos     rd      1
  12.  
  13. offset_X        rd 1
  14. offset_x_tray   rd 1
  15.  
  16. pos_x_clock             rd 1
  17. pos_x_cpu_usage         rd 1
  18. pos_x_cpu_chlang        rd 1
  19. pos_x_page_list         rd 1
  20.  
  21. active_slot_number      rd 1
  22.  
  23. my_active_slot          rd 1
  24. current_active_slot     rd 1
  25.  
  26. screen_size:
  27. .height rw 1
  28. .width  rw 1
  29.  
  30. draw_flag_certainly     rb 1
  31.  
  32. start_menu_flag         rb 1
  33. win_key_flag            rb 1
  34.  
  35. clean_desktop_minimize  rb 1
  36. ;------------------------------------------------------------------------------
  37. align 4
  38. system_colours  system_colors ; rd 10
  39. ;------------------------------------------------------------------------------
  40. align 4
  41. app_list        rd 50
  42. ;------------------------------------------------------------------------------
  43. align 4
  44. alt_tab_list    rd 256*2
  45. ;------------------------------------------------------------------------------
  46. align 4
  47. path:
  48.         rb 1024
  49. ;-----------------------------------------------------------------------------
  50. align 4
  51. library_path:
  52. process_info_buffer:
  53.         rb 1024
  54. ;------------------------------------------------------------------------------
  55. align 4
  56. procinfo_for_detect:
  57.         rb 1024
  58. ;------------------------------------------------------------------------------
  59. align 4
  60. procinfo_window_tabs:
  61.         rb 1024
  62. ;-----------------------------------------------------------------------------
  63. align 4
  64. bootparam:
  65.         rb 256
  66. ;------------------------------------------------------------------------------
  67. align 4
  68. tictable:
  69.         rd 256
  70. ;------------------------------------------------------------------------------
  71. align 4
  72. end_name:
  73.         rb 64
  74. ;------------------------------------------------------------------------------
  75. align 4
  76. menu_name:
  77.         rb 64
  78. ;------------------------------------------------------------------------------
  79. align 4
  80. run_name:
  81.         rb 64
  82. ;------------------------------------------------------------------------------
  83. align 4
  84. printscreen_name:
  85.         rb 64
  86. ;------------------------------------------------------------------------------
  87. align 4
  88. calendar_name:
  89.         rb 64
  90. ;------------------------------------------------------------------------------
  91. align 4
  92. sysmeter_name:
  93.         rb 64
  94. ;------------------------------------------------------------------------------
  95. align 4
  96. mousemul_name:
  97.         rb 64
  98. ;------------------------------------------------------------------------------
  99. align 4
  100.         rb 256
  101. detect_stack:
  102. ;------------------------------------------------------------------------------
  103. align 4
  104.         rb 256
  105. ctx_menu_stack:
  106. ;------------------------------------------------------------------------------
  107. align 4
  108.         rb 1024
  109. stack_top:
  110. ;------------------------------------------------------------------------------
  111.