Subversion Repositories Kolibri OS

Rev

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

Rev 1921 Rev 2388
Line 38... Line 38...
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'
42
include 'xcf/xcf.asm'
-
 
43
include 'tiff/tiff.asm'
-
 
44
include 'pnm/pnm.asm'
Line 43... Line 45...
43
 
45
 
44
;;================================================================================================;;
46
;;================================================================================================;;
45
proc lib_init ;///////////////////////////////////////////////////////////////////////////////////;;
47
proc lib_init ;///////////////////////////////////////////////////////////////////////////////////;;
46
;;------------------------------------------------------------------------------------------------;;
48
;;------------------------------------------------------------------------------------------------;;
Line 1997... Line 1999...
1997
  .png dd img.is.png, img.decode.png, img.encode.png
1999
  .png dd img.is.png, img.decode.png, img.encode.png
1998
  .jpg dd img.is.jpg, img.decode.jpg, img.encode.jpg
2000
  .jpg dd img.is.jpg, img.decode.jpg, img.encode.jpg
1999
  .tga dd img.is.tga, img.decode.tga, img.encode.tga
2001
  .tga dd img.is.tga, img.decode.tga, img.encode.tga
2000
  .pcx dd img.is.pcx, img.decode.pcx, img.encode.pcx
2002
  .pcx dd img.is.pcx, img.decode.pcx, img.encode.pcx
2001
  .xcf dd img.is.xcf, img.decode.xcf, img.encode.xcf
2003
  .xcf dd img.is.xcf, img.decode.xcf, img.encode.xcf
-
 
2004
  .tiff dd img.is.tiff, img.decode.tiff, img.encode.tiff
-
 
2005
  .pnm dd img.is.pnm, img.decode.pnm, img.encode.pnm
2002
  .z80 dd img.is.z80, img.decode.z80, img.encode.z80 ;this must be the last entry as there are no
2006
  .z80 dd img.is.z80, img.decode.z80, img.encode.z80 ;this must be the last entry as there are no
2003
  ;signatures in z80 screens at all
2007
  ;signatures in z80 screens at all
2004
       dd 0
2008
       dd 0
Line 2005... Line 2009...
2005
 
2009