Subversion Repositories Kolibri OS

Rev

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

Rev 2652 Rev 3069
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: 2652 $
8
$Revision: 3069 $
9
 
9
 
10
 
10
 
Line 445... Line 445...
445
        ret
445
        ret
446
endp
446
endp
447
;------------------------------------------------------------------------------
447
;------------------------------------------------------------------------------
448
align 4
448
align 4
449
proc delete_cursor stdcall, hcursor:dword
449
proc delete_cursor stdcall, hcursor:dword
450
           locals
-
 
451
             hsrv       dd ?
-
 
-
 
450
 
452
             io_code    dd ?
451
;        DEBUGF 1,'K : delete_cursor %x\n', [hcursor]
453
             input      dd ?
-
 
454
             inp_size   dd ?
-
 
455
             output     dd ?
-
 
456
             out_size   dd ?
-
 
457
           endl
-
 
Line 458... Line 452...
458
 
452
 
-
 
453
        mov     esi, [hcursor]
459
        mov     esi, [hcursor]
454
 
460
        cmp     [esi+CURSOR.magic], 'CURS'
455
        cmp     [esi+CURSOR.magic], 'CURS'
Line 461... Line 456...
461
        jne     .fail
456
        jne     .fail
462
 
457