Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
6453 punk_joker 1
 
2
use32                                   ; Tell compiler to use 32 bit instructions
3
4
 
5
6
 
7
include '../../../programs/macros.inc'
8
purge section,mov,add,sub
9
10
 
11
12
 
13
;;; Returns 0 on success. -1 on failure.
14
15
 
16
17
 
18
19
 
20
        test    eax, eax
21
        jnz     error
22
23
 
24
	ret
25
26
 
27
	mov eax, -1
28
	ret
29
endp
30
31
 
32
library lib_libimg, 	'libimg.obj'
33
34
 
35
	libimg_init, 'lib_init' , \
36
	img_is_img, 'img_is_img' , \
37
	img_info, 'img_info' , \
38
	img_from_file, 'img_from_file', \
39
	img_to_file, 'img_to_file', \
40
	img_from_rgb, 'img_from_rgb', \
41
	img_to_rgb, 'img_to_rgb', \
42
	img_to_rgb2, 'img_to_rgb2', \
43
	img_decode, 'img_decode', \
44
	img_encode, 'img_encode', \
45
	img_create, 'img_create', \
46
	img_destroy, 'img_destroy', \
47
	img_destroy_layer, 'img_destroy_layer', \
48
	img_count, 'img_count', \
49
	img_lock_bits, 'img_lock_bits', \
50
	img_unlock_bits, 'img_unlock_bits', \
51
	img_flip, 'img_flip', \
52
	img_flip_layer, 'img_flip_layer', \
53
	img_rotate, 'img_rotate', \
54
	img_rotate_layer, 'img_rotate_layer', \
55
	img_draw, 'img_draw'
56
57
 
58
;	public img_is_img as  '_img_is_img'
59
;public img_info as  '_img_info'
60
;public img_from_file as  '_img_from_file'
61
;public img_to_file as  '_img_to_file'
62
;public img_from_rgb as  '_img_from_rgb'
63
public img_to_rgb as  '_img_to_rgb'
64
public img_to_rgb2 as  '_img_to_rgb2'
65
public img_decode as  '_img_decode'
66
public img_encode as  '_img_encode'
67
public img_create as  '_img_create'
68
public img_destroy as  '_img_destroy'
69
public img_destroy_layer as  '_img_destroy_layer'
70
public img_count as  '_img_count'
71
;public img_lock_bits as  '_img_lock_bits'
72
;public img_unlock_bits as  '_img_unlock_bits'
73
public img_flip as  '_img_flip'
74
public img_flip_layer as  '_img_flip_layer'
75
public img_rotate as  '_img_rotate'
76
public img_rotate_layer as  '_img_rotate_layer'
77
public img_draw as  '_img_draw'
78