aboutsummaryrefslogtreecommitdiffstats
path: root/res/config.c
blob: 81b3aa7bab91b8bddc9ac46faeb593257d6f4d44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include "winhack.h"
#include <gdidefs.h>

/* Typedef from Windows 3.1 DDK. */

typedef struct {

    /* machine-dependent parameters */
    short   VertThumHeight; /* vertical thumb height (in pixels)  */
    short   HorizThumWidth; /* horizontal thumb width (in pixels) */
    short   IconXRatio;     /* icon width (in pixels)             */
    short   IconYRatio;     /* icon height (in pixels)            */
    short   CurXRatio;      /* cursor width (in pixels)           */
    short   CurYRatio;      /* cursor height (in pixels)          */
    short   Reserved;       /* reserved                           */
    short   XBorder;        /* vertical-line width                */
    short   YBorder;        /* horizontal-line width              */

    /* default-system color values */
    RGBQUAD clrScrollbar;
    RGBQUAD clrDesktop;
    RGBQUAD clrActiveCaption;
    RGBQUAD clrInactiveCaption;
    RGBQUAD clrMenu;
    RGBQUAD clrWindow;
    RGBQUAD clrWindowFrame;
    RGBQUAD clrMenuText;
    RGBQUAD clrWindowText;
    RGBQUAD clrCaptionText;
    RGBQUAD clrActiveBorder;
    RGBQUAD clrInactiveBorder;
    RGBQUAD clrAppWorkspace;
    RGBQUAD clrHiliteBk;
    RGBQUAD clrHiliteText;
    RGBQUAD clrBtnFace;
    RGBQUAD clrBtnShadow;
    RGBQUAD clrGrayText;
    RGBQUAD clrBtnText;
    RGBQUAD clrInactiveCaptionText;
} CONFIG_BIN;


CONFIG_BIN Config = {
    17,
    17,
    2,
    2,
    1,
    1,
    0,
    1,
    1,

    192, 192, 192, 0,
    192, 192, 192, 0,
    000, 000, 128, 0,
    255, 255, 255, 0,
    255, 255, 255, 0,
    255, 255, 255, 0,
    000, 000, 000, 0,
    000, 000, 000, 0,
    000, 000, 000, 0,
    255, 255, 255, 0,
    192, 192, 192, 0,
    192, 192, 192, 0,
    255, 255, 255, 0,
    000, 000, 128, 0,
    255, 255, 255, 0,
    192, 192, 192, 0,
    128, 128, 128, 0,
    192, 192, 192, 0,
    000, 000, 000, 0,
    000, 000, 000, 0
};