Subversion Repositories Kolibri OS

Rev

Rev 5130 | Rev 5157 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2288 clevermous 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
5154 hidnplayr 3
;; Copyright (C) KolibriOS team 2004-2014. All rights reserved. ;;
2288 clevermous 4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
8
$Revision: 5154 $
9
 
10
 
11
dpl0    equ  10010000b     ; data read       dpl0
12
drw0    equ  10010010b      ; data read/write dpl0
13
drw3    equ  11110010b      ; data read/write dpl3
14
cpl0    equ  10011010b      ; code read dpl0
15
cpl3    equ  11111010b      ; code read dpl3
16
 
17
D32     equ  01000000b      ; 32bit segment
18
G32     equ  10000000b      ; page gran
19
 
20
 
21
;;;;;;;;;;;;cpu_caps flags;;;;;;;;;;;;;;;;
22
 
23
CPU_386        equ 3
24
CPU_486        equ 4
25
CPU_PENTIUM    equ 5
26
CPU_P6         equ 6
27
CPU_PENTIUM4   equ 0x0F
28
 
29
CAPS_FPU       equ    00 ;on-chip x87 floating point unit
30
CAPS_VME       equ    01 ;virtual-mode enhancements
31
CAPS_DE        equ    02 ;debugging extensions
32
CAPS_PSE       equ    03 ;page-size extensions
33
CAPS_TSC       equ    04 ;time stamp counter
34
CAPS_MSR       equ    05 ;model-specific registers
35
CAPS_PAE       equ    06 ;physical-address extensions
36
CAPS_MCE       equ    07 ;machine check exception
37
CAPS_CX8       equ    08 ;CMPXCHG8B instruction
38
CAPS_APIC      equ    09 ;on-chip advanced programmable
39
                         ; interrupt controller
40
;                     10 ;unused
41
CAPS_SEP       equ    11 ;SYSENTER and SYSEXIT instructions
42
CAPS_MTRR      equ    12 ;memory-type range registers
43
CAPS_PGE       equ    13 ;page global extension
44
CAPS_MCA       equ    14 ;machine check architecture
45
CAPS_CMOV      equ    15 ;conditional move instructions
46
CAPS_PAT       equ    16 ;page attribute table
47
 
48
CAPS_PSE36     equ    17 ;page-size extensions
49
CAPS_PSN       equ    18 ;processor serial number
50
CAPS_CLFLUSH   equ    19 ;CLFUSH instruction
51
 
52
CAPS_DS        equ    21 ;debug store
53
CAPS_ACPI      equ    22 ;thermal monitor and software
54
                         ;controlled clock supported
55
CAPS_MMX       equ    23 ;MMX instructions
56
CAPS_FXSR      equ    24 ;FXSAVE and FXRSTOR instructions
57
CAPS_SSE       equ    25 ;SSE instructions
58
CAPS_SSE2      equ    26 ;SSE2 instructions
59
CAPS_SS        equ    27 ;self-snoop
60
CAPS_HTT       equ    28 ;hyper-threading technology
61
CAPS_TM        equ    29 ;thermal monitor supported
62
CAPS_IA64      equ    30 ;IA64 capabilities
63
CAPS_PBE       equ    31 ;pending break enable
64
 
65
;ecx
66
CAPS_SSE3      equ    32 ;SSE3 instructions
67
;                     33
68
;                     34
69
CAPS_MONITOR   equ    35 ;MONITOR/MWAIT instructions
70
CAPS_DS_CPL    equ    36 ;
71
CAPS_VMX       equ    37 ;virtual mode extensions
72
;                     38 ;
73
CAPS_EST       equ    39 ;enhansed speed step
74
CAPS_TM2       equ    40 ;thermal monitor2 supported
75
;                     41
76
CAPS_CID       equ    42 ;
77
;                     43
78
;                     44
79
CAPS_CX16      equ    45 ;CMPXCHG16B instruction
80
CAPS_xTPR      equ    46 ;
81
;
82
;reserved
83
;
84
;ext edx /ecx
85
CAPS_SYSCAL    equ    64 ;
86
CAPS_XD        equ    65 ;execution disable
87
CAPS_FFXSR     equ    66 ;
88
CAPS_RDTSCP    equ    67 ;
89
CAPS_X64       equ    68 ;
90
CAPS_3DNOW     equ    69 ;
91
CAPS_3DNOWEXT  equ    70 ;
92
CAPS_LAHF      equ    71 ;
93
CAPS_CMP_LEG   equ    72 ;
94
CAPS_SVM       equ    73 ;secure virual machine
95
CAPS_ALTMOVCR8 equ    74 ;
96
 
97
; CPU MSR names
98
MSR_SYSENTER_CS         equ     0x174
99
MSR_SYSENTER_ESP        equ     0x175
100
MSR_SYSENTER_EIP        equ     0x176
101
MSR_AMD_EFER            equ     0xC0000080      ; Extended Feature Enable Register
102
MSR_AMD_STAR            equ     0xC0000081      ; SYSCALL/SYSRET Target Address Register
103
 
104
CR0_PE         equ    0x00000001   ;protected mode
105
CR0_MP         equ    0x00000002   ;monitor fpu
106
CR0_EM         equ    0x00000004   ;fpu emulation
107
CR0_TS         equ    0x00000008   ;task switch
108
CR0_ET         equ    0x00000010   ;extension type hardcoded to 1
109
CR0_NE         equ    0x00000020   ;numeric error
110
CR0_WP         equ    0x00010000   ;write protect
111
CR0_AM         equ    0x00040000   ;alignment check
112
CR0_NW         equ    0x20000000   ;not write-through
113
CR0_CD         equ    0x40000000   ;cache disable
114
CR0_PG         equ    0x80000000   ;paging
115
 
116
 
117
CR4_VME        equ    0x0001
118
CR4_PVI        equ    0x0002
119
CR4_TSD        equ    0x0004
120
CR4_DE         equ    0x0008
121
CR4_PSE        equ    0x0010
122
CR4_PAE        equ    0x0020
123
CR4_MCE        equ    0x0040
124
CR4_PGE        equ    0x0080
125
CR4_PCE        equ    0x0100
126
CR4_OSFXSR     equ    0x0200
127
CR4_OSXMMEXPT  equ    0x0400
128
 
129
SSE_IE         equ    0x0001
130
SSE_DE         equ    0x0002
131
SSE_ZE         equ    0x0004
132
SSE_OE         equ    0x0008
133
SSE_UE         equ    0x0010
134
SSE_PE         equ    0x0020
135
SSE_DAZ        equ    0x0040
136
SSE_IM         equ    0x0080
137
SSE_DM         equ    0x0100
138
SSE_ZM         equ    0x0200
139
SSE_OM         equ    0x0400
140
SSE_UM         equ    0x0800
141
SSE_PM         equ    0x1000
142
SSE_FZ         equ    0x8000
143
 
144
SSE_INIT equ (SSE_IM+SSE_DM+SSE_ZM+SSE_OM+SSE_UM+SSE_PM)
145
 
146
IRQ_PIC        equ    0
147
IRQ_APIC       equ    1
148
 
2381 hidnplayr 149
struct  TSS
150
        _back       rw 2
151
        _esp0       rd 1
152
        _ss0        rw 2
153
        _esp1       rd 1
154
        _ss1        rw 2
155
        _esp2       rd 1
156
        _ss2        rw 2
157
        _cr3        rd 1
158
        _eip        rd 1
159
        _eflags     rd 1
160
        _eax        rd 1
161
        _ecx        rd 1
162
        _edx        rd 1
163
        _ebx        rd 1
164
        _esp        rd 1
165
        _ebp        rd 1
166
        _esi        rd 1
167
        _edi        rd 1
168
        _es         rw 2
169
        _cs         rw 2
170
        _ss         rw 2
171
        _ds         rw 2
172
        _fs         rw 2
173
        _gs         rw 2
174
        _ldt        rw 2
175
        _trap       rw 1
176
        _io         rw 1
177
                    rb 24
178
        _io_map_0   rb 4096
179
        _io_map_1   rb 4096
180
ends
2288 clevermous 181
 
4700 mario79 182
DRIVE_DATA_SIZE     equ 16
3627 Serge 183
 
2288 clevermous 184
OS_BASE             equ 0x80000000
185
 
186
window_data         equ (OS_BASE+0x0001000)
187
 
188
CURRENT_TASK        equ (OS_BASE+0x0003000)
189
TASK_COUNT          equ (OS_BASE+0x0003004)
190
TASK_BASE           equ (OS_BASE+0x0003010)
191
TASK_DATA           equ (OS_BASE+0x0003020)
192
TASK_EVENT          equ (OS_BASE+0x0003020)
193
 
3732 Serge 194
CDDataBuf           equ (OS_BASE+0x0005000)
195
 
196
;unused                 0x6000 - 0x8fff
197
 
198
BOOT_VARS           equ (OS_BASE)               ;0x9000
199
 
2288 clevermous 200
idts                equ (OS_BASE+0x000B100)
201
WIN_STACK           equ (OS_BASE+0x000C000)
202
WIN_POS             equ (OS_BASE+0x000C400)
3727 Serge 203
FDD_BUFF            equ (OS_BASE+0x000D000)     ;512
2288 clevermous 204
 
205
WIN_TEMP_XY         equ (OS_BASE+0x000F300)
206
KEY_COUNT           equ (OS_BASE+0x000F400)
4588 mario79 207
KEY_BUFF            equ (OS_BASE+0x000F401) ; 120*2 + 2*2 = 244 bytes, actually 255 bytes
2288 clevermous 208
 
209
BTN_COUNT           equ (OS_BASE+0x000F500)
210
BTN_BUFF            equ (OS_BASE+0x000F501)
211
 
212
 
213
BTN_ADDR            equ (OS_BASE+0x000FE88)
214
MEM_AMOUNT          equ (OS_BASE+0x000FE8C)
215
 
216
SYS_SHUTDOWN        equ (OS_BASE+0x000FF00)
217
TASK_ACTIVATE       equ (OS_BASE+0x000FF01)
218
 
2513 mario79 219
 
2288 clevermous 220
TMP_STACK_TOP       equ 0x006CC00
221
 
5130 serge 222
sys_proc            equ (OS_BASE+0x006F000)
2288 clevermous 223
 
224
SLOT_BASE           equ (OS_BASE+0x0080000)
225
 
226
VGABasePtr          equ (OS_BASE+0x00A0000)
227
 
3727 Serge 228
CLEAN_ZONE          equ (_CLEAN_ZONE-OS_BASE)
229
IDE_DMA             equ (_IDE_DMA-OS_BASE)
230
 
2288 clevermous 231
UPPER_KERNEL_PAGES  equ (OS_BASE+0x0400000)
232
 
233
virtual at              (OS_BASE+0x05FFF80)
234
  tss  TSS
235
end virtual
236
 
237
HEAP_BASE           equ (OS_BASE+0x0800000)
238
HEAP_MIN_SIZE       equ 0x01000000
239
 
240
page_tabs           equ 0xFDC00000
241
app_page_tabs       equ 0xFDC00000
242
kernel_tabs         equ (page_tabs+ (OS_BASE shr 10))   ;0xFDE00000
243
master_tab          equ (page_tabs+ (page_tabs shr 10)) ;0xFDFF70000
244
 
245
LFB_BASE            equ 0xFE000000
246
 
247
 
248
new_app_base        equ 0;
249
 
250
twdw                equ 0x2000   ;(CURRENT_TASK-window_data)
251
 
252
std_application_base_address   equ new_app_base
3539 clevermous 253
RING0_STACK_SIZE    equ (0x2000 - 512)    ;512 байт для контекста FPU
2288 clevermous 254
 
255
REG_SS              equ (RING0_STACK_SIZE-4)
256
REG_APP_ESP         equ (RING0_STACK_SIZE-8)
257
REG_EFLAGS          equ (RING0_STACK_SIZE-12)
258
REG_CS              equ (RING0_STACK_SIZE-16)
259
REG_EIP             equ (RING0_STACK_SIZE-20)
260
REG_EAX             equ (RING0_STACK_SIZE-24)
261
REG_ECX             equ (RING0_STACK_SIZE-28)
262
REG_EDX             equ (RING0_STACK_SIZE-32)
263
REG_EBX             equ (RING0_STACK_SIZE-36)
264
REG_ESP             equ (RING0_STACK_SIZE-40)  ;RING0_STACK_SIZE-20
265
REG_EBP             equ (RING0_STACK_SIZE-44)
266
REG_ESI             equ (RING0_STACK_SIZE-48)
267
REG_EDI             equ (RING0_STACK_SIZE-52)
268
REG_RET             equ (RING0_STACK_SIZE-56)  ;irq0.return
269
 
270
 
5130 serge 271
PAGE_SIZE           equ 4096
272
 
2288 clevermous 273
PG_UNMAP            equ 0x000
274
PG_MAP              equ 0x001
275
PG_WRITE            equ 0x002
276
PG_SW               equ 0x003
277
PG_USER             equ 0x005
278
PG_UW               equ 0x007
279
PG_NOCACHE          equ 0x018
280
PG_LARGE            equ 0x080
281
PG_GLOBAL           equ 0x100
282
 
283
PG_SHARED           equ 0x200
284
 
285
;;;;;;;;;;;boot time variables
286
 
2466 Serge 287
BOOT_BPP            equ 0x9000    ;byte   bits per pixel
288
BOOT_PITCH          equ 0x9001    ;word   scanline length
2288 clevermous 289
BOOT_VESA_MODE      equ 0x9008    ;word   vesa video mode
2466 Serge 290
BOOT_X_RES          equ 0x900A    ;word   X res
291
BOOT_Y_RES          equ 0x900C    ;word   Y res
2288 clevermous 292
BOOT_BANK_SW        equ 0x9014    ;dword  Vesa 1.2 pm bank switch
293
BOOT_LFB            equ 0x9018    ;dword  Vesa 2.0 LFB address
294
BOOT_MTRR           equ 0x901C    ;byte   0 or 1 : enable MTRR graphics acceleration
3777 yogev_ezra 295
;BOOT_LOG            equ 0x901D    ;byte   not used anymore (0 or 1 : enable system log display)
296
BOOT_LAUNCHER_START equ 0x901D    ;byte  (0 or 1) start the first app (right now it's LAUNCHER) after kernel is loaded?
2466 Serge 297
;BOOT_DIRECT_LFB     equ 0x901E    ;byte   0 or 1 : enable direct lfb write, paging disabled
3777 yogev_ezra 298
BOOT_DEBUG_PRINT    equ 0x901E    ;byte   If nonzero, duplicates debug output to the screen.
2466 Serge 299
BOOT_DMA            equ 0x901F    ;
2288 clevermous 300
BOOT_PCI_DATA       equ 0x9020    ;8bytes pci data
301
BOOT_VRR            equ 0x9030    ;byte   VRR start enabled 1, 2-no
4624 mario79 302
;BOOT_IDE_BASE_ADDR  equ 0x9031   ;word   IDEContrRegsBaseAddr ; now free and is not used
2288 clevermous 303
BOOT_MEM_AMOUNT     equ 0x9034    ;dword  memory amount
304
 
2466 Serge 305
BOOT_APM_ENTRY      equ 0x9040
306
BOOT_APM_VERSION    equ 0x9044
307
BOOT_APM_FLAGS      equ 0x9046    ;unused
308
BOOT_APM_CODE_32    equ 0x9050
309
BOOT_APM_CODE_16    equ 0x9052
310
BOOT_APM_DATA_16    equ 0x9054
4624 mario79 311
;BOOT_IDE_BAR0_16    equ 0x9056 ; now free and is not used
312
;BOOT_IDE_BAR1_16    equ 0x9058 ; now free and is not used
313
;BOOT_IDE_BAR2_16    equ 0x905A ; now free and is not used
314
;BOOT_IDE_BAR3_16    equ 0x905C ; now free and is not used
315
;BOOT_IDE_PI_16      equ 0x905E ; now free and is not used
316
;BOOT_IDE_INTERR_16  equ 0x9060 ; now free and is not used
2466 Serge 317
 
2288 clevermous 318
TMP_FILE_NAME       equ     0
319
TMP_CMD_LINE        equ  1024
320
TMP_ICON_OFFS       equ  1280
321
 
322
 
323
EVENT_REDRAW       equ 0x00000001
324
EVENT_KEY          equ 0x00000002
325
EVENT_BUTTON       equ 0x00000004
326
EVENT_BACKGROUND   equ 0x00000010
327
EVENT_MOUSE        equ 0x00000020
328
EVENT_IPC          equ 0x00000040
329
EVENT_NETWORK      equ 0x00000080
330
EVENT_DEBUG        equ 0x00000100
3545 hidnplayr 331
EVENT_NETWORK2     equ 0x00000200
332
EVENT_EXTENDED     equ 0x00000400
2288 clevermous 333
 
334
EV_INTR            equ 1
335
 
2384 hidnplayr 336
struct  THR_DATA
337
                        rb (8192-512)
338
;       pl0_stack
339
        fpu_state       rb 512
340
        tls_page        rb 4096
341
        pdbr            rb 4096
342
ends
2288 clevermous 343
 
2384 hidnplayr 344
virtual at (OS_BASE-sizeof.THR_DATA)
2288 clevermous 345
  thr_data  THR_DATA
346
end virtual
347
 
2384 hidnplayr 348
struct  SYS_VARS
349
        bpp             dd ?
350
        scanline        dd ?
351
        vesa_mode       dd ?
352
        x_res           dd ?
353
        y_res           dd ?
354
ends
2288 clevermous 355
 
2384 hidnplayr 356
struct  APPOBJ                  ; common object header
357
        magic           dd ?    ;
358
        destroy         dd ?    ; internal destructor
359
        fd              dd ?    ; next object in list
360
        bk              dd ?    ; prev object in list
361
        pid             dd ?    ; owner id
362
ends
2288 clevermous 363
 
364
APP_OBJ_OFFSET  equ 48
365
APP_EV_OFFSET   equ 40
366
 
2384 hidnplayr 367
struct  CURSOR          APPOBJ
368
        base            dd ?   ;allocated memory
369
        hot_x           dd ?   ;hotspot coords
370
        hot_y           dd ?
2288 clevermous 371
 
2384 hidnplayr 372
        list_next       dd ?   ;next cursor in cursor list
373
        list_prev       dd ?   ;prev cursor in cursor list
374
        dev_obj         dd ?   ;device depended data
375
ends
2288 clevermous 376
 
377
 
2384 hidnplayr 378
struct  EVENT           APPOBJ
379
        id              dd ?   ;event uid
380
        state           dd ?   ;internal flags
381
        code            dd ?
382
                        rd 5
383
ends
2288 clevermous 384
 
385
 
2384 hidnplayr 386
struct  SMEM
387
        bk              dd ?
388
        fd              dd ?    ;+4
389
        base            dd ?    ;+8
390
        size            dd ?    ;+12
391
        access          dd ?    ;+16
392
        refcount        dd ?    ;+20
393
        name            rb 32   ;+24
394
ends
2288 clevermous 395
 
2384 hidnplayr 396
struct  SMAP            APPOBJ
397
        base            dd ?   ;mapped base
398
        parent          dd ?   ;SMEM
399
ends
2288 clevermous 400
 
2384 hidnplayr 401
struct  DLLDESCR
402
        bk              dd ?
403
        fd              dd ?    ;+4
404
        data            dd ?    ;+8
405
        size            dd ?    ;+12
406
        timestamp       dq ?
407
        refcount        dd ?
408
        defaultbase     dd ?
409
        coff_hdr        dd ?
410
        symbols_ptr     dd ?
411
        symbols_num     dd ?
412
        symbols_lim     dd ?
413
        exports         dd ?   ;export table
414
        name            rb 260
415
ends
2288 clevermous 416
 
2384 hidnplayr 417
struct  HDLL
418
        fd              dd ?   ;next object in list
419
        bk              dd ?   ;prev object in list
420
        pid             dd ?   ;owner id
2288 clevermous 421
 
2384 hidnplayr 422
        base            dd ?   ;mapped base
423
        size            dd ?   ;mapped size
424
        refcount        dd ?   ;reference counter for this process and this lib
425
        parent          dd ?   ;DLLDESCR
426
ends
2288 clevermous 427
 
2384 hidnplayr 428
struct  display_t
429
        x               dd ?
430
        y               dd ?
431
        width           dd ?
432
        height          dd ?
5154 hidnplayr 433
        bits_per_pixel  dd ?
434
        bytes_per_pixel dd ?
2384 hidnplayr 435
        vrefresh        dd ?
436
        pitch           dd ?
437
        lfb             dd ?
2288 clevermous 438
 
2384 hidnplayr 439
        modes           dd ?
440
        ddev            dd ?
441
        connector       dd ?
442
        crtc            dd ?
2288 clevermous 443
 
2384 hidnplayr 444
        cr_list.next    dd ?
445
        cr_list.prev    dd ?
2288 clevermous 446
 
2384 hidnplayr 447
        cursor          dd ?
2288 clevermous 448
 
2384 hidnplayr 449
        init_cursor     dd ?
450
        select_cursor   dd ?
451
        show_cursor     dd ?
452
        move_cursor     dd ?
453
        restore_cursor  dd ?
2445 Serge 454
        disable_mouse   dd ?
2414 Serge 455
        mask_seqno      dd ?
2430 mario79 456
        check_mouse     dd ?
457
        check_m_pixel   dd ?
2384 hidnplayr 458
ends
2288 clevermous 459
 
2384 hidnplayr 460
struct  BOOT_DATA
461
        bpp             dd ?
462
        scanline        dd ?
463
        vesa_mode       dd ?
464
        x_res           dd ?
465
        y_res           dd ?
466
        mouse_port      dd ?
467
        bank_switch     dd ?
468
        lfb             dd ?
469
        vesa_mem        dd ?
470
        log             dd ?
471
        direct_lfb      dd ?
472
        pci_data        dd ?
473
                        dd ?
474
        vrr             dd ?
475
        ide_base        dd ?
476
        mem_amount      dd ?
477
        pages_count     dd ?
478
        pagemap_size    dd ?
479
        kernel_max      dd ?
480
        kernel_pages    dd ?
481
        kernel_tables   dd ?
2288 clevermous 482
 
2384 hidnplayr 483
        cpu_vendor      dd ?
484
                        dd ?
485
                        dd ?
486
        cpu_sign        dd ?
487
        cpu_info        dd ?
488
        cpu_caps        dd ?
489
                        dd ?
490
                        dd ?
491
ends
2288 clevermous 492
 
2384 hidnplayr 493
struct  LHEAD
494
        next            dd ?   ;next object in list
495
        prev            dd ?   ;prev object in list
496
ends
2288 clevermous 497
 
2384 hidnplayr 498
struct  MUTEX
499
        lhead   LHEAD
500
        count   dd ?
501
ends
2288 clevermous 502
 
3393 clevermous 503
struct  PCIDEV
504
        bk              dd ?
505
        fd              dd ?
506
        vendor_device_id dd ?
507
        class           dd ?
508
        devfn           db ?
509
        bus             db ?
4418 clevermous 510
                        rb 2
511
        owner           dd ? ; pointer to SRV or 0
3393 clevermous 512
ends
513
 
3395 clevermous 514
; The following macro assume that we are on uniprocessor machine.
515
; Serious work is needed for multiprocessor machines.
516
macro spin_lock_irqsave spinlock
517
{
518
        pushf
519
        cli
520
}
521
macro spin_unlock_irqrestore spinlock
522
{
523
        popf
524
}
525
macro spin_lock_irq spinlock
526
{
527
        cli
528
}
529
macro spin_unlock_irq spinlock
530
{
531
        sti
532
}
533
 
2384 hidnplayr 534
struct  MEM_STATE
535
        mutex           MUTEX
536
        smallmap        dd ?
537
        treemap         dd ?
538
        topsize         dd ?
539
        top             dd ?
540
        smallbins       rd 4*32
541
        treebins        rd 32
542
ends
2288 clevermous 543
 
2384 hidnplayr 544
struct  PG_DATA
545
        mem_amount      dd ?
546
        vesa_mem        dd ?
547
        pages_count     dd ?
548
        pages_free      dd ?
549
        pages_faults    dd ?
550
        pagemap_size    dd ?
551
        kernel_pages    dd ?
552
        kernel_tables   dd ?
553
        sys_page_dir    dd ?
554
        mutex           MUTEX
555
ends
2288 clevermous 556
 
2384 hidnplayr 557
struct  SRV
558
        srv_name        rb 16    ;ASCIIZ string
559
        magic           dd ?     ;+0x10 ;'SRV '
560
        size            dd ?     ;+0x14 ;size of structure SRV
561
        fd              dd ?     ;+0x18 ;next SRV descriptor
562
        bk              dd ?     ;+0x1C ;prev SRV descriptor
563
        base            dd ?     ;+0x20 ;service base address
564
        entry           dd ?     ;+0x24 ;service START function
565
        srv_proc        dd ?     ;+0x28 ;user mode service handler
566
        srv_proc_ex     dd ?     ;+0x2C ;kernel mode service handler
567
ends
2288 clevermous 568
 
3520 clevermous 569
struct USBSRV
570
        srv             SRV
571
        usb_func        dd ?
572
ends
573
 
574
struct USBFUNC
575
        strucsize       dd ?
576
        add_device      dd ?
577
        device_disconnect dd ?
578
ends
579
 
2288 clevermous 580
DRV_ENTRY    equ  1
581
DRV_EXIT     equ -1
582
 
2384 hidnplayr 583
struct  COFF_HEADER
584
        machine         dw ?
585
        nSections       dw ?
586
        DataTime        dd ?
587
        pSymTable       dd ?
588
        nSymbols        dd ?
589
        optHeader       dw ?
590
        flags           dw ?
591
ends
2288 clevermous 592
 
2384 hidnplayr 593
struct  COFF_SECTION
594
        Name            rb 8
595
        VirtualSize     dd ?
596
        VirtualAddress  dd ?
597
        SizeOfRawData   dd ?
598
        PtrRawData      dd ?
599
        PtrReloc        dd ?
600
        PtrLinenumbers  dd ?
601
        NumReloc        dw ?
602
        NumLinenum      dw ?
603
        Characteristics dd ?
604
ends
2288 clevermous 605
 
2384 hidnplayr 606
struct  COFF_RELOC
607
        VirtualAddress  dd ?
608
        SymIndex        dd ?
609
        Type            dw ?
610
ends
2288 clevermous 611
 
2384 hidnplayr 612
struct  COFF_SYM
613
        Name            rb 8
614
        Value           dd ?
615
        SectionNumber   dw ?
616
        Type            dw ?
617
        StorageClass    db ?
618
        NumAuxSymbols   db ?
619
ends
2288 clevermous 620
 
5039 clevermous 621
struct  STRIPPED_PE_HEADER
622
        Signature           dw ?
623
        Characteristics     dw ?
624
        AddressOfEntryPoint dd ?
625
        ImageBase           dd ?
626
        SectionAlignmentLog db ?
627
        FileAlignmentLog    db ?
628
        MajorOSVersion      db ?
629
        MinorOSVersion      db ?
630
        SizeOfImage         dd ?
631
        SizeOfStackReserve  dd ?
632
        SizeOfHeapReserve   dd ?
633
        SizeOfHeaders       dd ?
634
        Subsystem           db ?
635
        NumberOfRvaAndSizes db ?
636
        NumberOfSections    dw ?
637
ends
638
STRIPPED_PE_SIGNATURE = 0x4503 ; 'PE' xor 'S'
639
SPE_DIRECTORY_IMPORT    = 0
640
SPE_DIRECTORY_EXPORT    = 1
641
SPE_DIRECTORY_BASERELOC = 2
642
 
2384 hidnplayr 643
struct  IOCTL
644
        handle          dd ?
645
        io_code         dd ?
646
        input           dd ?
647
        inp_size        dd ?
648
        output          dd ?
649
        out_size        dd ?
650
ends
2288 clevermous 651
 
2384 hidnplayr 652
struct  IRQH
653
        list            LHEAD
654
        handler         dd ?   ;handler roututine
655
        data            dd ?   ;user-specific data
3506 clevermous 656
        num_ints        dd ?   ;how many times handled
2414 Serge 657
ends