Subversion Repositories Kolibri OS

Rev

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

Rev 1921 Rev 2388
Line 1... Line 1...
1
;;================================================================================================;;
1
;;================================================================================================;;
2
;;//// xcf.inc //// (c) dunkaist, 2011 ///////////////////////////////////////////////////////////;;
2
;;//// xcf.inc //// (c) dunkaist, 2011-2012 //////////////////////////////////////////////////////;;
3
;;================================================================================================;;
3
;;================================================================================================;;
4
;;                                                                                                ;;
4
;;                                                                                                ;;
5
;; This file is part of Common development libraries (Libs-Dev).                                  ;;
5
;; This file is part of Common development libraries (Libs-Dev).                                  ;;
6
;;                                                                                                ;;
6
;;                                                                                                ;;
7
;; Libs-Dev is free software: you can redistribute it and/or modify it under the terms of the GNU ;;
7
;; Libs-Dev is free software: you can redistribute it and/or modify it under the terms of the GNU ;;
Line 15... Line 15...
15
;; You should have received a copy of the GNU Lesser General Public License along with Libs-Dev.  ;;
15
;; You should have received a copy of the GNU Lesser General Public License along with Libs-Dev.  ;;
16
;; If not, see .                                                    ;;
16
;; If not, see .                                                    ;;
17
;;                                                                                                ;;
17
;;                                                                                                ;;
18
;;================================================================================================;;
18
;;================================================================================================;;
Line -... Line 19...
-
 
19
 
-
 
20
XCF_BASETYPE_RGB	=	0
-
 
21
XCF_BASETYPE_GRAY	=	1
-
 
22
XCF_BASETYPE_INDEXED	=	2
19
 
23
 
20
struct xcf_header
24
struct	xcf_header
21
    magic_string    rb  9
25
	magic_string	rb	9
22
    version         rd  1
26
	version		rd	1
23
    reserved        rb  1
27
	reserved	rb	1
24
    width           rd  1
28
	width		rd	1
25
    height          rd  1
29
	height		rd	1
26
    base_type       rd  1
30
	base_type	rd	1
Line 27... Line -...
27
ends
-
 
28
 
-
 
29
XCF_BASETYPE_RGB        equ 0
-
 
30
XCF_BASETYPE_GRAY       equ 1
-
 
31
XCF_BASETYPE_INDEXED    equ 2
31
ends
32
 
32
 
33
struct xcf_ext
33
struct	xcf_ext
34
    visible         rd  1
34
	visible		rd	1
35
    layer_mode      rd  1
35
	layer_mode	rd	1