Subversion Repositories Kolibri OS

Rev

Rev 6535 | 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
 
6495 punk_joker 13
;;; Returns 0 on success. -1 on failure.
6453 punk_joker 14
15
 
16
	pusha
6535 siemargl 17
	mcall 68,11
6453 punk_joker 18
	stdcall dll.Load, @IMPORT
19
	popa
6535 siemargl 20
	ret
6453 punk_joker 21
endp
22
23
 
24
library lib_libimg, 	'libimg.obj'
25
26
 
27
	libimg_init, 'lib_init' , \
28
	img_is_img, 'img_is_img' , \
29
	img_info, 'img_info' , \
30
	img_from_file, 'img_from_file', \
31
	img_to_file, 'img_to_file', \
32
	img_from_rgb, 'img_from_rgb', \
33
	img_to_rgb, 'img_to_rgb', \
34
	img_to_rgb2, 'img_to_rgb2', \
35
	img_decode, 'img_decode', \
36
	img_encode, 'img_encode', \
37
	img_create, 'img_create', \
38
	img_destroy, 'img_destroy', \
39
	img_destroy_layer, 'img_destroy_layer', \
40
	img_count, 'img_count', \
41
	img_lock_bits, 'img_lock_bits', \
42
	img_unlock_bits, 'img_unlock_bits', \
43
	img_flip, 'img_flip', \
44
	img_flip_layer, 'img_flip_layer', \
45
	img_rotate, 'img_rotate', \
46
	img_rotate_layer, 'img_rotate_layer', \
47
	img_draw, 'img_draw', \
8545 superturbo 48
	img_blend, 'img_blend', \
49
	img_convert, 'img_convert', \
50
    img_resize_data, 'img_resize_data', \
51
    img_scale, 'img_scale'
52
6453 punk_joker 53
 
54
public img_to_rgb as  '_img_to_rgb'
55
public img_to_rgb2 as  '_img_to_rgb2'
56
public img_decode as  '_img_decode'
57
public img_encode as  '_img_encode'
58
public img_create as  '_img_create'
59
public img_destroy as  '_img_destroy'
60
public img_destroy_layer as  '_img_destroy_layer'
61
public img_count as  '_img_count'
62
public img_flip as  '_img_flip'
63
public img_flip_layer as  '_img_flip_layer'
64
public img_rotate as  '_img_rotate'
65
public img_rotate_layer as  '_img_rotate_layer'
66
public img_draw as  '_img_draw'
67
public img_blend as '_img_blend'
8545 superturbo 68
public img_convert as '_img_convert'
69
public img_resize_data as '_img_resize_data'
70
public img_scale as '_img_scale'
71