Subversion Repositories Kolibri OS

Rev

Rev 5452 | Blame | Compare with Previous | 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. ;------------------------------------------------------------------------------
  36. align 4
  37. system_colours  system_colors
  38. ;------------------------------------------------------------------------------
  39. align 4
  40. app_list        rd 50
  41. ;------------------------------------------------------------------------------
  42. align 4
  43. alt_tab_list    rd 256*2
  44. ;------------------------------------------------------------------------------
  45. align 4
  46. path:
  47.         rb 1024
  48. ;-----------------------------------------------------------------------------
  49. align 4
  50. library_path:
  51. process_info_buffer     process_information
  52. ;------------------------------------------------------------------------------
  53. align 4
  54. procinfo_for_detect     process_information
  55. ;------------------------------------------------------------------------------
  56. align 4
  57. procinfo_window_tabs    process_information
  58. ;-----------------------------------------------------------------------------
  59. align 4
  60. bootparam:
  61.         rb 256
  62. ;------------------------------------------------------------------------------
  63. align 4
  64. tictable:
  65.         rd 256
  66. ;------------------------------------------------------------------------------
  67. align 4
  68. end_name:
  69.         rb 64
  70. ;------------------------------------------------------------------------------
  71. align 4
  72. menu_name:
  73.         rb 64
  74. ;------------------------------------------------------------------------------
  75. align 4
  76. run_name:
  77.         rb 64
  78. ;------------------------------------------------------------------------------
  79. align 4
  80. printscreen_name:
  81.         rb 64
  82. ;------------------------------------------------------------------------------
  83. align 4
  84. calendar_name:
  85.         rb 64
  86. ;------------------------------------------------------------------------------
  87. align 4
  88. sysmeter_name:
  89.         rb 64
  90. ;------------------------------------------------------------------------------
  91. align 4
  92. mousemul_name:
  93.         rb 64
  94. ;------------------------------------------------------------------------------
  95. align 4
  96.         rb 256
  97. detect_stack:
  98. ;------------------------------------------------------------------------------
  99. align 4
  100.         rb 256
  101. ctx_menu_stack:
  102. ;------------------------------------------------------------------------------
  103. align 4
  104.         rb 1024
  105. stack_top:
  106. ;------------------------------------------------------------------------------
  107.