Subversion Repositories Kolibri OS

Rev

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

Rev 1593 Rev 1921
Line 37... Line 37...
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'
41
include 'pcx/pcx.asm'
-
 
42
include 'xcf/xcf.asm'
Line 42... Line 43...
42
 
43
 
43
;;================================================================================================;;
44
;;================================================================================================;;
44
proc lib_init ;///////////////////////////////////////////////////////////////////////////////////;;
45
proc lib_init ;///////////////////////////////////////////////////////////////////////////////////;;
45
;;------------------------------------------------------------------------------------------------;;
46
;;------------------------------------------------------------------------------------------------;;
Line 1995... Line 1996...
1995
  .gif dd img.is.gif, img.decode.gif, img.encode.gif
1996
  .gif dd img.is.gif, img.decode.gif, img.encode.gif
1996
  .png dd img.is.png, img.decode.png, img.encode.png
1997
  .png dd img.is.png, img.decode.png, img.encode.png
1997
  .jpg dd img.is.jpg, img.decode.jpg, img.encode.jpg
1998
  .jpg dd img.is.jpg, img.decode.jpg, img.encode.jpg
1998
  .tga dd img.is.tga, img.decode.tga, img.encode.tga
1999
  .tga dd img.is.tga, img.decode.tga, img.encode.tga
1999
  .pcx dd img.is.pcx, img.decode.pcx, img.encode.pcx
2000
  .pcx dd img.is.pcx, img.decode.pcx, img.encode.pcx
-
 
2001
  .xcf dd img.is.xcf, img.decode.xcf, img.encode.xcf
2000
  .z80 dd img.is.z80, img.decode.z80, img.encode.z80 ;this must be the last entry as there are no
2002
  .z80 dd img.is.z80, img.decode.z80, img.encode.z80 ;this must be the last entry as there are no
2001
  ;signatures in z80 screens at all
2003
  ;signatures in z80 screens at all
2002
       dd 0
2004
       dd 0
Line 2003... Line 2005...
2003
 
2005