Subversion Repositories Kolibri OS

Rev

Rev 3506 | Rev 3537 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3506 Rev 3520
Line 3... Line 3...
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 3506 $
8
$Revision: 3520 $
9
 
9
 
10
 
10
 
Line 632... Line 632...
632
        entry           dd ?     ;+0x24 ;service START function
632
        entry           dd ?     ;+0x24 ;service START function
633
        srv_proc        dd ?     ;+0x28 ;user mode service handler
633
        srv_proc        dd ?     ;+0x28 ;user mode service handler
634
        srv_proc_ex     dd ?     ;+0x2C ;kernel mode service handler
634
        srv_proc_ex     dd ?     ;+0x2C ;kernel mode service handler
635
ends
635
ends
Line -... Line 636...
-
 
636
 
-
 
637
struct USBSRV
-
 
638
        srv             SRV
-
 
639
        usb_func        dd ?
-
 
640
ends
-
 
641
 
-
 
642
struct USBFUNC
-
 
643
        strucsize       dd ?
-
 
644
        add_device      dd ?
-
 
645
        device_disconnect dd ?
-
 
646
ends
636
 
647
 
637
DRV_ENTRY    equ  1
648
DRV_ENTRY    equ  1
Line 638... Line 649...
638
DRV_EXIT     equ -1
649
DRV_EXIT     equ -1
639
 
650