Subversion Repositories Kolibri OS

Rev

Rev 2649 | Go to most recent revision | 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 ; rd 10
  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:
  52.         rb 1024
  53. ;------------------------------------------------------------------------------
  54. align 4
  55. procinfo_for_detect:
  56.         rb 1024
  57. ;------------------------------------------------------------------------------
  58. align 4
  59. procinfo_window_tabs:
  60.         rb 1024
  61. ;-----------------------------------------------------------------------------
  62. align 4
  63. bootparam:
  64.         rb 256
  65. ;------------------------------------------------------------------------------
  66. align 4
  67. tictable:
  68.         rd 256
  69. ;------------------------------------------------------------------------------
  70. align 4
  71. end_name:
  72.         rb 64
  73. ;------------------------------------------------------------------------------
  74. align 4
  75. menu_name:
  76.         rb 64
  77. ;------------------------------------------------------------------------------
  78. align 4
  79. run_name:
  80.         rb 64
  81. ;------------------------------------------------------------------------------
  82. align 4
  83. printscreen_name:
  84.         rb 64
  85. ;------------------------------------------------------------------------------
  86. align 4
  87. calendar_name:
  88.         rb 64
  89. ;------------------------------------------------------------------------------
  90. align 4
  91. sysmeter_name:
  92.         rb 64
  93. ;------------------------------------------------------------------------------
  94. align 4
  95. mousemul_name:
  96.         rb 64
  97. ;------------------------------------------------------------------------------
  98. align 4
  99.         rb 256
  100. detect_stack:
  101. ;------------------------------------------------------------------------------
  102. align 4
  103.         rb 256
  104. ctx_menu_stack:
  105. ;------------------------------------------------------------------------------
  106. align 4
  107.         rb 1024
  108. stack_top:
  109. ;------------------------------------------------------------------------------
  110.