Subversion Repositories Kolibri OS

Rev

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

  1. align 4
  2. boxlib_import:
  3.   edit_box_draw  dd aEdit_box_draw
  4.   edit_box_key   dd aEdit_box_key
  5.   edit_box_mouse dd aEdit_box_mouse
  6. ;  version_ed     dd aVersion_ed
  7.  
  8.   check_box_draw  dd aCheck_box_draw
  9.   check_box_mouse dd aCheck_box_mouse
  10. ;  version_ch      dd aVersion_ch
  11.  
  12. ;  option_box_draw dd aOption_box_draw
  13. ;  option_box_mouse dd aOption_box_mouse
  14. ;  version_op dd aVersion_op
  15.  
  16.   scrollbar_ver_draw  dd aScrollbar_ver_draw
  17. ;  scrollbar_ver_mouse dd aScrollbar_ver_mouse
  18.   scrollbar_hor_draw  dd aScrollbar_hor_draw
  19. ;  scrollbar_hor_mouse dd aScrollbar_hor_mouse
  20. ;  version_scrollbar   dd aVersion_scrollbar
  21.  
  22.   tl_data_init dd sz_tl_data_init
  23.   tl_data_clear dd sz_tl_data_clear
  24.   tl_info_clear dd sz_tl_info_clear
  25.   tl_key dd sz_tl_key
  26.   tl_mouse dd sz_tl_mouse
  27.   tl_draw dd sz_tl_draw
  28.   tl_info_undo dd sz_tl_info_undo
  29.   tl_info_redo dd sz_tl_info_redo
  30.   tl_node_add dd sz_tl_node_add
  31.   tl_node_set_data dd sz_tl_node_set_data
  32.   tl_node_get_data dd sz_tl_node_get_data
  33.   tl_node_delete dd sz_tl_node_delete
  34.   tl_cur_beg dd sz_tl_cur_beg
  35.   tl_cur_next dd sz_tl_cur_next
  36.   tl_cur_perv dd sz_tl_cur_perv
  37.   tl_node_close_open dd sz_tl_node_close_open
  38.   tl_node_lev_inc dd sz_tl_node_lev_inc
  39.   tl_node_lev_dec dd sz_tl_node_lev_dec
  40.   tl_node_move_up dd sz_tl_node_move_up
  41.   tl_node_move_down dd sz_tl_node_move_down
  42.   tl_save_mem dd sz_tl_save_mem
  43.   tl_load_mem dd sz_tl_load_mem
  44.   tl_get_mem_size dd sz_tl_get_mem_size
  45.  
  46.   dd 0,0
  47.  
  48.   aEdit_box_draw  db 'edit_box',0
  49.   aEdit_box_key   db 'edit_box_key',0
  50.   aEdit_box_mouse db 'edit_box_mouse',0
  51. ;  aVersion_ed     db 'version_ed',0
  52.  
  53.   aCheck_box_draw  db 'check_box_draw',0
  54.   aCheck_box_mouse db 'check_box_mouse',0
  55. ;  aVersion_ch      db 'version_ch',0
  56.  
  57. ;  aOption_box_draw db 'option_box_draw',0
  58. ;  aOption_box_mouse db 'option_box_mouse',0
  59. ;  aVersion_op db 'version_op',0
  60.  
  61.   aScrollbar_ver_draw  db 'scrollbar_v_draw',0
  62. ;  aScrollbar_ver_mouse db 'scrollbar_v_mouse',0
  63.   aScrollbar_hor_draw  db 'scrollbar_h_draw',0
  64. ;  aScrollbar_hor_mouse db 'scrollbar_h_mouse',0
  65. ;  aVersion_scrollbar   db 'version_scrollbar',0
  66.  
  67.   sz_tl_data_init db 'tl_data_init',0
  68.   sz_tl_data_clear db 'tl_data_clear',0
  69.   sz_tl_info_clear db 'tl_info_clear',0
  70.   sz_tl_key db 'tl_key',0
  71.   sz_tl_mouse db 'tl_mouse',0
  72.   sz_tl_draw db 'tl_draw',0
  73.   sz_tl_info_undo db 'tl_info_undo',0
  74.   sz_tl_info_redo db 'tl_info_redo',0
  75.   sz_tl_node_add db 'tl_node_add',0
  76.   sz_tl_node_set_data db 'tl_node_set_data',0
  77.   sz_tl_node_get_data db 'tl_node_get_data',0
  78.   sz_tl_node_delete db 'tl_node_delete',0
  79.   sz_tl_cur_beg db 'tl_cur_beg',0
  80.   sz_tl_cur_next db 'tl_cur_next',0
  81.   sz_tl_cur_perv db 'tl_cur_perv',0
  82.   sz_tl_node_close_open db 'tl_node_close_open',0
  83.   sz_tl_node_lev_inc db 'tl_node_lev_inc',0
  84.   sz_tl_node_lev_dec db 'tl_node_lev_dec',0
  85.   sz_tl_node_move_up db 'tl_node_move_up',0
  86.   sz_tl_node_move_down db 'tl_node_move_down',0
  87.   sz_tl_save_mem db 'tl_save_mem',0
  88.   sz_tl_load_mem db 'tl_load_mem',0
  89.   sz_tl_get_mem_size db 'tl_get_mem_size',0
  90.  
  91. align 4
  92. libini_import:
  93.   lib_init_ini dd alib_init0
  94.   ini_get_str  dd aini_get_str
  95. dd 0,0
  96.   alib_init0   db 'lib_init',0
  97.   aini_get_str db 'ini_get_str',0
  98.  
  99. align 4
  100. libimg_import:
  101.   lib_init    dd alib_init1
  102.   img_is_img  dd aimg_is_img
  103.   img_info    dd aimg_info
  104.   img_from_file dd aimg_from_file
  105.   img_to_file dd aimg_to_file
  106.   img_from_rgb dd aimg_from_rgb
  107.   img_to_rgb  dd aimg_to_rgb
  108.   img_to_rgb2 dd aimg_to_rgb2
  109.   img_decode  dd aimg_decode
  110.   img_encode  dd aimg_encode
  111.   img_create  dd aimg_create
  112.   img_destroy dd aimg_destroy
  113.   img_destroy_layer dd aimg_destroy_layer
  114.   img_count   dd aimg_count
  115.   img_lock_bits dd aimg_lock_bits
  116.   img_unlock_bits dd aimg_unlock_bits
  117.   img_flip    dd aimg_flip
  118.   img_flip_layer dd aimg_flip_layer
  119.   img_rotate  dd aimg_rotate
  120.   img_rotate_layer dd aimg_rotate_layer
  121.   img_draw    dd aimg_draw
  122.  
  123.   dd 0,0
  124.  
  125.   alib_init1   db 'lib_init',0
  126.   aimg_is_img  db 'img_is_img',0 ;îïðåäåëÿåò ïî äàííûì, ìîæåò ëè áèáëèîòåêà ñäåëàòü èç íèõ èçîáðàæåíèå
  127.   aimg_info    db 'img_info',0
  128.   aimg_from_file db 'img_from_file',0
  129.   aimg_to_file db 'img_to_file',0
  130.   aimg_from_rgb db 'img_from_rgb',0
  131.   aimg_to_rgb  db 'img_to_rgb',0 ;ïðåîáðàçîâàíèå èçîáðàæåíèÿ â äàííûå RGB
  132.   aimg_to_rgb2 db 'img_to_rgb2',0
  133.   aimg_decode  db 'img_decode',0 ;àâòîìàòè÷åñêè îïðåäåëÿåò ôîðìàò ãðàôè÷åñêèõ äàííûõ
  134.   aimg_encode  db 'img_encode',0
  135.   aimg_create  db 'img_create',0
  136.   aimg_destroy db 'img_destroy',0
  137.   aimg_destroy_layer db 'img_destroy_layer',0
  138.   aimg_count   db 'img_count',0
  139.   aimg_lock_bits db 'img_lock_bits',0
  140.   aimg_unlock_bits db 'img_unlock_bits',0
  141.   aimg_flip    db 'img_flip',0
  142.   aimg_flip_layer db 'img_flip_layer',0
  143.   aimg_rotate  db 'img_rotate',0
  144.   aimg_rotate_layer db 'img_rotate_layer',0
  145.   aimg_draw    db 'img_draw',0
  146.  
  147. align 4
  148. strlib_import:
  149.   str_copy dd astr_copy
  150.   str_cat dd astr_cat
  151.   str_catchar dd astr_catchar
  152.   str_inschar dd astr_inschar
  153.   str_lowcase dd astr_lowcase
  154.   str_upcase dd astr_upcase
  155.  
  156.   str_len dd astr_len
  157.   str_cmp dd astr_cmp
  158.   str_cmpi dd astr_cmpi
  159.   str_poschar dd astr_poschar
  160.  
  161.   dd 0,0
  162.   astr_copy    db 'str_copy',0
  163.   astr_cat     db 'str_cat',0
  164.   astr_catchar db 'str_catchar',0
  165. ;  str_ins     db 'str_ins',0
  166.   astr_inschar db 'str_inschar',0
  167. ;  str_sub     db 'str_sub',0
  168.   astr_lowcase db 'str_lowcase',0
  169.   astr_upcase db 'str_upcase',0
  170.  
  171.   astr_len  db 'str_len',0
  172.   astr_cmp  db 'str_cmp',0
  173.   astr_cmpi db 'str_cmpi',0
  174. ;  str_pos  db 'str_pos',0
  175.   astr_poschar db 'str_poschar',0