Subversion Repositories Kolibri OS

Rev

Rev 4420 | Rev 4700 | 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: 4608 $
  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.  
  156. ; Core functions
  157. include "core/sync.inc"     ; macros for synhronization objects
  158. include "core/sys32.inc"    ; process management
  159. include "core/sched.inc"    ; process scheduling
  160. include "core/syscall.inc"  ; system call
  161. include "core/fpu.inc"      ; all fpu/sse support
  162. include "core/memory.inc"
  163. include "core/mtrr.inc"
  164. include "core/heap.inc"     ; kernel and app heap
  165. include "core/malloc.inc"   ; small kernel heap
  166. include "core/taskman.inc"
  167. include "core/dll.inc"
  168. include "core/peload.inc"   ;
  169. include "core/exports.inc"
  170. include "core/string.inc"
  171. include "core/v86.inc"      ; virtual-8086 manager
  172. include "core/irq.inc"      ; irq handling functions
  173. include "core/apic.inc"     ; Interrupt Controller functions
  174. include "core/timers.inc"
  175. include "core/clipboard.inc" ; custom clipboard
  176.  
  177. ; GUI stuff
  178. include "gui/window.inc"
  179. include "gui/event.inc"
  180. include "gui/font.inc"
  181. include "gui/button.inc"
  182.  
  183. ; shutdown
  184.  
  185. ; file system
  186.  
  187. include "blkdev/disk.inc" ; support for plug-n-play disks
  188. include "blkdev/disk_cache.inc" ; caching for plug-n-play disks
  189. include "blkdev/rd.inc"   ; ramdisk read /write
  190. include "fs/fat.inc"      ; read / write for fat filesystem
  191. include "fs/ntfs.inc"     ; read / write for ntfs filesystem
  192. include "fs/fs_lfn.inc"    ; syscall, version 2
  193. include "fs/iso9660.inc"  ; read for iso9660 filesystem CD
  194. include "fs/ext2/ext2.asm"     ; read / write for ext2 filesystem
  195. include "fs/xfs.asm"      ; read / write for xfs filesystem
  196.  
  197. ; sound
  198.  
  199. include "sound/playnote.inc" ; player Note for Speaker PC
  200.  
  201. ; display
  202.  
  203. ;include "video/vesa12.inc"   ; Vesa 1.2 functions
  204. include "video/vesa20.inc"   ; Vesa 2.0 functions
  205. include "video/blitter.inc"  ;
  206. include "video/vga.inc"      ; VGA 16 color functions
  207. include "video/cursors.inc"  ; cursors functions
  208.  
  209. ; Network Interface & TCPIP Stack
  210.  
  211. include "network/stack.inc"
  212.  
  213. ;include "drivers/uart.inc"
  214.  
  215.  
  216. ; Mouse pointer
  217.  
  218. include "gui/mouse.inc"
  219.  
  220. ; Window skinning
  221.  
  222. include "gui/skincode.inc"
  223.  
  224. ; Pci functions
  225.  
  226. include "bus/pci/pci32.inc"
  227.  
  228. ; USB functions
  229. include "bus/usb/init.inc"
  230.  
  231. ; Floppy drive controller
  232.  
  233. include "blkdev/fdc.inc"
  234. include "blkdev/flp_drv.inc"
  235.  
  236. ; IDE cache
  237. include "blkdev/ide_cache.inc"
  238.  
  239. ; HD drive controller
  240. include "blkdev/hd_drv.inc"
  241. ; Access through BIOS
  242. include "blkdev/bd_drv.inc"
  243.  
  244. ; CD drive controller
  245.  
  246. include "blkdev/cdrom.inc"
  247. include "blkdev/cd_drv.inc"
  248.  
  249. ; Character devices
  250.  
  251. include "hid/keyboard.inc"
  252. include "hid/mousedrv.inc"
  253.  
  254. ; setting date,time,clock and alarm-clock
  255.  
  256. include "hid/set_dtc.inc"
  257.  
  258. ;% -include
  259.  
  260. ;parser file names
  261. include "fs/parse_fn.inc"
  262.  
  263. ; work with conf lib
  264. include "core/conf_lib.inc"
  265.  
  266. ; load external lib
  267. include "core/ext_lib.inc"
  268.  
  269. ; list of external functions
  270. include "imports.inc"
  271.