Subversion Repositories Kolibri OS

Rev

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

Rev 1252 Rev 1569
Line 36... Line 36...
36
include 'jpeg/jpeg.asm'
36
include 'jpeg/jpeg.asm'
37
include 'png/png.asm'
37
include 'png/png.asm'
38
include 'tga/tga.asm'
38
include 'tga/tga.asm'
39
include 'z80/z80.asm'
39
include 'z80/z80.asm'
40
include 'ico_cur/ico_cur.asm'
40
include 'ico_cur/ico_cur.asm'
-
 
41
include 'pcx/pcx.asm'
Line 41... Line 42...
41
 
42
 
42
;;================================================================================================;;
43
;;================================================================================================;;
43
proc lib_init ;///////////////////////////////////////////////////////////////////////////////////;;
44
proc lib_init ;///////////////////////////////////////////////////////////////////////////////////;;
44
;;------------------------------------------------------------------------------------------------;;
45
;;------------------------------------------------------------------------------------------------;;
Line 1688... Line 1689...
1688
  .cur dd img.is.cur, img.decode.ico_cur, img.encode.cur
1689
  .cur dd img.is.cur, img.decode.ico_cur, img.encode.cur
1689
  .gif dd img.is.gif, img.decode.gif, img.encode.gif
1690
  .gif dd img.is.gif, img.decode.gif, img.encode.gif
1690
  .png dd img.is.png, img.decode.png, img.encode.png
1691
  .png dd img.is.png, img.decode.png, img.encode.png
1691
  .jpg dd img.is.jpg, img.decode.jpg, img.encode.jpg
1692
  .jpg dd img.is.jpg, img.decode.jpg, img.encode.jpg
1692
  .tga dd img.is.tga, img.decode.tga, img.encode.tga
1693
  .tga dd img.is.tga, img.decode.tga, img.encode.tga
-
 
1694
  .pcx dd img.is.pcx, img.decode.pcx, img.encode.pcx
1693
  .z80 dd img.is.z80, img.decode.z80, img.encode.z80 ;this must be the last entry as there are no
1695
  .z80 dd img.is.z80, img.decode.z80, img.encode.z80 ;this must be the last entry as there are no
1694
  ;signatures in z80 screens at all
1696
  ;signatures in z80 screens at all
1695
       dd 0
1697
       dd 0
Line 1696... Line 1698...
1696
 
1698