Subversion Repositories Kolibri OS

Rev

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

Rev 2288 Rev 2381
Line 3... Line 3...
3
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 2288 $
8
$Revision: 2381 $
Line 9... Line 9...
9
 
9
 
Line 41... Line 41...
41
        push    2
41
        push    2
42
        pop     eax
42
        pop     eax
43
        ret
43
        ret
Line 44... Line 44...
44
 
44
 
45
struct SKIN_HEADER
45
struct  SKIN_HEADER
46
  .ident   dd ?
46
        ident           dd ?
47
  .version dd ?
47
        version         dd ?
48
  .params  dd ?
48
        params          dd ?
49
  .buttons dd ?
49
        buttons         dd ?
50
  .bitmaps dd ?
50
        bitmaps         dd ?
Line 51... Line 51...
51
ends
51
ends
52
 
52
 
53
struct SKIN_PARAMS
53
struct  SKIN_PARAMS
54
  .skin_height    dd ?
54
        skin_height     dd ?
55
  .margin.right   dw ?
55
        margin.right    dw ?
56
  .margin.left    dw ?
56
        margin.left     dw ?
57
  .margin.bottom  dw ?
57
        margin.bottom   dw ?
58
  .margin.top     dw ?
58
        margin.top      dw ?
59
  .colors.inner   dd ?
59
        colors.inner    dd ?
60
  .colors.outer   dd ?
60
        colors.outer    dd ?
61
  .colors.frame   dd ?
61
        colors.frame    dd ?
62
  .colors_1.inner dd ?
62
        colors_1.inner  dd ?
63
  .colors_1.outer dd ?
63
        colors_1.outer  dd ?
64
  .colors_1.frame dd ?
64
        colors_1.frame  dd ?
65
  .dtp.size       dd ?
65
        dtp.size        dd ?
Line 66... Line 66...
66
  .dtp.data       db 40 dup (?)
66
        dtp.data        rb 40
67
ends
67
ends
68
 
68
 
69
struct SKIN_BUTTONS
69
struct  SKIN_BUTTONS
70
  .type     dd ?
70
        type    dd ?
71
  .pos:
71
; position
72
    .left   dw ?
72
        left    dw ?
73
    .top    dw ?
73
        top     dw ?
74
  .size:
74
; size
Line 75... Line 75...
75
    .width  dw ?
75
        width   dw ?
76
    .height dw ?
76
        height  dw ?
77
ends
77
ends
78
 
78
 
79
struct SKIN_BITMAPS
79
struct  SKIN_BITMAPS
Line 80... Line 80...
80
  .kind  dw ?
80
        kind    dw ?
81
  .type  dw ?
81
        type    dw ?
82
  .data  dd ?
82
        data    dd ?