Subversion Repositories Kolibri OS

Rev

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

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;                                                              ;;
  3. ;; Copyright (C) KolibriOS team 2004-2012. All rights reserved. ;;
  4. ;; Distributed under terms of the GNU General Public License    ;;
  5. ;;                                                              ;;
  6. ;; KERNEL32.INC                                                 ;;
  7. ;;                                                              ;;
  8. ;; Included 32 bit kernel files for MenuetOS                    ;;
  9. ;;                                                              ;;
  10. ;; This file is kept separate as it will be easier to           ;;
  11. ;; maintain and compile with an automated SETUP program         ;;
  12. ;; in the future.                                               ;;
  13. ;;                                                              ;;
  14. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  15.  
  16. $Revision: 4772 $
  17.  
  18. struct  POINT
  19.         x       dd ?
  20.         y       dd ?
  21. ends
  22.  
  23. struct  RECT
  24.         left    dd ?
  25.         top     dd ?
  26.         right   dd ?
  27.         bottom  dd ?
  28. ends
  29.  
  30. struct  BOX
  31.         left    dd ?
  32.         top     dd ?
  33.         width   dd ?
  34.         height  dd ?
  35. ends
  36.  
  37. struct  DISPMODE
  38.         width   dw ?
  39.         height  dw ?
  40.         bpp     dw ?
  41.         freq    dw ?
  42. ends
  43.  
  44. ; constants definition
  45. WSTATE_NORMAL    = 00000000b
  46. WSTATE_MAXIMIZED = 00000001b
  47. WSTATE_MINIMIZED = 00000010b
  48. WSTATE_ROLLEDUP  = 00000100b
  49.  
  50. WSTATE_REDRAW    = 00000001b
  51. WSTATE_WNDDRAWN  = 00000010b
  52.  
  53. WSTYLE_HASCAPTION     = 00010000b
  54. WSTYLE_CLIENTRELATIVE = 00100000b
  55.  
  56. struct  TASKDATA
  57.         event_mask      dd ?
  58.         pid             dd ?
  59.                         dw ?
  60.         state           db ?
  61.                         db ?
  62.                         dw ?
  63.         wnd_number      db ?
  64.                         db ?
  65.         mem_start       dd ?
  66.         counter_sum     dd ?
  67.         counter_add     dd ?
  68.         cpu_usage       dd ?
  69. ends
  70.  
  71. TSTATE_RUNNING        = 0
  72. TSTATE_RUN_SUSPENDED  = 1
  73. TSTATE_WAIT_SUSPENDED = 2
  74. TSTATE_ZOMBIE         = 3
  75. TSTATE_TERMINATING    = 4
  76. TSTATE_WAITING        = 5
  77. TSTATE_FREE           = 9
  78.  
  79. ; structures definition
  80. struct  WDATA
  81.         box             BOX
  82.         cl_workarea     dd ?
  83.         cl_titlebar     dd ?
  84.         cl_frames       dd ?
  85.         reserved        db ?
  86.         fl_wstate       db ?
  87.         fl_wdrawn       db ?
  88.         fl_redraw       db ?
  89. ends
  90.  
  91. label WDATA.fl_wstyle byte at WDATA.cl_workarea + 3
  92.  
  93. struct  DBG_REGS
  94.         dr0             dd ?
  95.         dr1             dd ?
  96.         dr2             dd ?
  97.         dr3             dd ?
  98.         dr7             dd ?
  99. ends
  100.  
  101. struct  APPDATA
  102.         app_name        rb 11
  103.                         rb 5
  104.  
  105.         fpu_state       dd ?            ;+16
  106.         ev_count_       dd ? ;unused    ;+20
  107.         exc_handler     dd ?            ;+24
  108.         except_mask     dd ?            ;+28
  109.         pl0_stack       dd ?            ;+32
  110.         heap_base       dd ?            ;+36
  111.         heap_top        dd ?            ;+40
  112.         cursor          dd ?            ;+44
  113.         fd_ev           dd ?            ;+48
  114.         bk_ev           dd ?            ;+52
  115.         fd_obj          dd ?            ;+56
  116.         bk_obj          dd ?            ;+60
  117.         saved_esp       dd ?            ;+64
  118.         io_map          rd 2            ;+68
  119.         dbg_state       dd ?            ;+76
  120.         cur_dir         dd ?            ;+80
  121.         wait_timeout    dd ?            ;+84
  122.         saved_esp0      dd ?            ;+88
  123.         wait_begin      dd ?            ;+92   +++
  124.         wait_test       dd ?            ;+96   +++
  125.         wait_param      dd ?            ;+100  +++
  126.         tls_base        dd ?            ;+104
  127.         dlls_list_ptr   dd ?            ;+108
  128.         event_filter    dd ?            ;+112
  129.         draw_bgr_x      dd ?            ;+116
  130.         draw_bgr_y      dd ?            ;+120
  131.                         dd ?            ;+124
  132.  
  133.         wnd_shape       dd ?            ;+128
  134.         wnd_shape_scale dd ?            ;+132
  135.                         dd ?            ;+136
  136.         mem_size        dd ?            ;+140
  137.         saved_box       BOX             ;+144
  138.         ipc_start       dd ?            ;+160
  139.         ipc_size        dd ?            ;+164
  140.         event_mask      dd ?            ;+168
  141.         debugger_slot   dd ?            ;+172
  142.         terminate_protection dd ?       ;+176
  143.         keyboard_mode   db ?            ;+180
  144.                         rb 3
  145.         dir_table       dd ?            ;+184
  146.         dbg_event_mem   dd ?            ;+188
  147.         dbg_regs        DBG_REGS        ;+192
  148.         wnd_caption     dd ?            ;+212
  149.         wnd_clientbox   BOX             ;+216
  150.         priority        dd ?            ;+232
  151.         in_schedule     LHEAD           ;+236
  152.  
  153. ends
  154.  
  155. struct  IDE_DATA
  156.         ProgrammingInterface dd ?
  157.         Interrupt            dw ?
  158.         RegsBaseAddres       dw ?
  159.         BAR0_val             dw ?
  160.         BAR1_val             dw ?
  161.         BAR2_val             dw ?
  162.         BAR3_val             dw ?
  163.         dma_hdd_channel_1    db ?
  164.         dma_hdd_channel_2    db ?
  165. ends
  166.  
  167. struct  IDE_CACHE
  168.         pointer              dd ?
  169.         size                 dd ?   ; not use
  170.         data_pointer         dd ?
  171.         system_data_size     dd ?   ; not use
  172.         appl_data_size       dd ?   ; not use
  173.         system_data          dd ?
  174.         appl_data            dd ?
  175.         system_sad_size      dd ?
  176.         appl_sad_size        dd ?
  177.         search_start         dd ?
  178.         appl_search_start    dd ?
  179. ends
  180.  
  181. struct  IDE_DEVICE
  182.         UDMA_possible_modes  db ?
  183.         UDMA_set_mode        db ?
  184. ends
  185.  
  186. ; Core functions
  187. include "core/sync.inc"     ; macros for synhronization objects
  188. include "core/sys32.inc"    ; process management
  189. include "core/sched.inc"    ; process scheduling
  190. include "core/syscall.inc"  ; system call
  191. include "core/fpu.inc"      ; all fpu/sse support
  192. include "core/memory.inc"
  193. include "core/mtrr.inc"
  194. include "core/heap.inc"     ; kernel and app heap
  195. include "core/malloc.inc"   ; small kernel heap
  196. include "core/taskman.inc"
  197. include "core/dll.inc"
  198. include "core/peload.inc"   ;
  199. include "core/exports.inc"
  200. include "core/string.inc"
  201. include "core/v86.inc"      ; virtual-8086 manager
  202. include "core/irq.inc"      ; irq handling functions
  203. include "core/apic.inc"     ; Interrupt Controller functions
  204. include "core/timers.inc"
  205. include "core/clipboard.inc" ; custom clipboard
  206.  
  207. ; GUI stuff
  208. include "gui/window.inc"
  209. include "gui/event.inc"
  210. include "gui/font.inc"
  211. include "gui/button.inc"
  212.  
  213. ; shutdown
  214.  
  215. ; file system
  216.  
  217. include "blkdev/disk.inc" ; support for plug-n-play disks
  218. include "blkdev/disk_cache.inc" ; caching for plug-n-play disks
  219. include "blkdev/rd.inc"   ; ramdisk read /write
  220. include "fs/fat.inc"      ; read / write for fat filesystem
  221. include "fs/ntfs.inc"     ; read / write for ntfs filesystem
  222. include "fs/fs_lfn.inc"    ; syscall, version 2
  223. include "fs/iso9660.inc"  ; read for iso9660 filesystem CD
  224. include "fs/ext2/ext2.asm"     ; read / write for ext2 filesystem
  225. include "fs/xfs.asm"      ; read / write for xfs filesystem
  226.  
  227. ; sound
  228.  
  229. include "sound/playnote.inc" ; player Note for Speaker PC
  230.  
  231. ; display
  232.  
  233. ;include "video/vesa12.inc"   ; Vesa 1.2 functions
  234. include "video/vesa20.inc"   ; Vesa 2.0 functions
  235. include "video/blitter.inc"  ;
  236. include "video/vga.inc"      ; VGA 16 color functions
  237. include "video/cursors.inc"  ; cursors functions
  238.  
  239. ; Network Interface & TCPIP Stack
  240.  
  241. include "network/stack.inc"
  242.  
  243. ;include "drivers/uart.inc"
  244.  
  245.  
  246. ; Mouse pointer
  247.  
  248. include "gui/mouse.inc"
  249.  
  250. ; Window skinning
  251.  
  252. include "gui/skincode.inc"
  253.  
  254. ; Pci functions
  255.  
  256. include "bus/pci/pci32.inc"
  257.  
  258. ; USB functions
  259. include "bus/usb/init.inc"
  260.  
  261. ; Floppy drive controller
  262.  
  263. include "blkdev/fdc.inc"
  264. include "blkdev/flp_drv.inc"
  265.  
  266. ; IDE cache
  267. include "blkdev/ide_cache.inc"
  268.  
  269. ; HD drive controller
  270. include "blkdev/hd_drv.inc"
  271. ; Access through BIOS
  272. include "blkdev/bd_drv.inc"
  273.  
  274. ; CD drive controller
  275.  
  276. include "blkdev/cd_drv.inc"
  277.  
  278. ; Character devices
  279.  
  280. include "hid/keyboard.inc"
  281. include "hid/mousedrv.inc"
  282.  
  283. ; setting date,time,clock and alarm-clock
  284.  
  285. include "hid/set_dtc.inc"
  286.  
  287. ;% -include
  288.  
  289. ;parser file names
  290. include "fs/parse_fn.inc"
  291.  
  292. ; work with conf lib
  293. include "core/conf_lib.inc"
  294.  
  295. ; load external lib
  296. include "core/ext_lib.inc"
  297.  
  298. ; list of external functions
  299. include "imports.inc"
  300.