comparison src/paranormal/cmaps.c @ 188:0d826917c56f trunk

[svn] - 64-bit safety (pass 1 of 2)
author nenolod
date Thu, 02 Nov 2006 18:22:02 -0800
parents adf9f4b26039
children d517fc608e89
comparison
equal deleted inserted replaced
187:90e05196fe17 188:0d826917c56f
32 STD_CMAP_OPTS, 32 STD_CMAP_OPTS,
33 { "lcolor", "The low color used in the gradient generation", 33 { "lcolor", "The low color used in the gradient generation",
34 OPT_TYPE_COLOR, { cval: {0, 0, 0} } }, 34 OPT_TYPE_COLOR, { cval: {0, 0, 0} } },
35 { "hcolor", "The high color used in the gradient generation", 35 { "hcolor", "The high color used in the gradient generation",
36 OPT_TYPE_COLOR, { cval: {0, 0, 0} } }, 36 OPT_TYPE_COLOR, { cval: {0, 0, 0} } },
37 { 0 } 37 { NULL }
38 }; 38 };
39 39
40 static void 40 static void
41 cmap_gradient_exec (const struct pn_actuator_option *opts, 41 cmap_gradient_exec (const struct pn_actuator_option *opts,
42 gpointer data) 42 gpointer data)
64 static struct pn_actuator_option_desc cmap_bwgradient_opts[] = 64 static struct pn_actuator_option_desc cmap_bwgradient_opts[] =
65 { 65 {
66 STD_CMAP_OPTS, 66 STD_CMAP_OPTS,
67 { "color", "The intermediate color to use in the gradient", 67 { "color", "The intermediate color to use in the gradient",
68 OPT_TYPE_COLOR, { cval: {191, 191, 191} } }, 68 OPT_TYPE_COLOR, { cval: {191, 191, 191} } },
69 { 0 } 69 { NULL }
70 }; 70 };
71 71
72 static void 72 static void
73 cmap_bwgradient_exec (const struct pn_actuator_option *opts, 73 cmap_bwgradient_exec (const struct pn_actuator_option *opts,
74 gpointer data) 74 gpointer data)