Subversion Repositories Kolibri OS

Rev

Rev 4287 | Rev 5201 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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