Subversion Repositories Kolibri OS

Rev

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

Rev 1569 Rev 2388
Line 1... Line 1...
1
;;================================================================================================;;
1
;;================================================================================================;;
2
;;//// pcx.inc //// (c) dunkaist, 2010 ///////////////////////////////////////////////////////////;;
2
;;//// pcx.inc //// (c) dunkaist, 2010,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 19... Line -...
19
 
-
 
20
struct pcx_header
-
 
21
    magic_number    rb  1
-
 
22
    version         rb  1
-
 
23
    encoding        rb  1
-
 
24
    bpp             rb  1
-
 
25
    xmin            rw  1
-
 
26
    ymin            rw  1
-
 
27
    xmax            rw  1
-
 
28
    ymax            rw  1
-
 
29
    hres            rw  1
-
 
30
    vres            rw  1
-
 
31
    colormap        rb  48
-
 
32
    reserved        rb  1
-
 
33
    nplanes         rb  1
-
 
34
    bpl             rw  1
-
 
35
    palette_info    rw  1
-
 
36
    filler          rb  58
-
 
37
ends
19
 
-
 
20
struct	pcx_header
-
 
21
	magic_number	rb	1
-
 
22
	version		rb	1
-
 
23
	encoding	rb	1
-
 
24
	bpp		rb	1
-
 
25
	xmin		rw	1
-
 
26
	ymin		rw	1
-
 
27
	xmax		rw	1
-
 
28
	ymax		rw	1
-
 
29
	hres		rw	1
-
 
30
	vres		rw	1
-
 
31
	colormap	rb	48
-
 
32
	reserved	rb	1
-
 
33
	nplanes		rb	1
-
 
34
	bpl		rw	1
-
 
35
	palette_info	rw	1
-
 
36
	filler		rb	58
-
 
37
ends