Subversion Repositories Kolibri OS

Rev

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

Rev 7105 Rev 7735
Line 137... Line 137...
137
        fd              dd ?
137
        fd              dd ?
138
        img_data_len    dd ?
138
        img_data_len    dd ?
139
        img_data        dd ?    ; raw bytes
139
        img_data        dd ?    ; raw bytes
140
        img             dd ?    ; Image pointer
140
        img             dd ?    ; Image pointer
141
endl
141
endl
142
DEBUGF 2, 'img.from_file: %s\n', [_filename]
-
 
143
	push	ebx
142
	push	ebx
144
        mov     [img], 0
143
        mov     [img], 0
145
        invoke  file.open, [_filename], O_READ
144
        invoke  file.open, [_filename], O_READ
146
        mov     [fd], eax
145
        mov     [fd], eax
147
        test    eax, eax
146
        test    eax, eax
Line 2742... Line 2741...
2742
;! Below is private data you should never use directly from your code                             ;;
2741
;! Below is private data you should never use directly from your code                             ;;
2743
;;================================================================================================;;
2742
;;================================================================================================;;
2744
;;////////////////////////////////////////////////////////////////////////////////////////////////;;
2743
;;////////////////////////////////////////////////////////////////////////////////////////////////;;
2745
;;================================================================================================;;
2744
;;================================================================================================;;
Line 2746... Line 2745...
2746
 
2745
 
Line 2747... Line 2746...
2747
include_debug_strings
2746
;include_debug_strings
2748
 
2747
 
2749
align 4
2748
align 4
2750
type2bpp    dd  8, 24, 32, 15, 16, 1, 9, 2, 4
2749
type2bpp    dd  8, 24, 32, 15, 16, 1, 9, 2, 4