Subversion Repositories Kolibri OS

Rev

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

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