summaryrefslogtreecommitdiff
path: root/otk_c/color.h
diff options
context:
space:
mode:
Diffstat (limited to 'otk_c/color.h')
-rw-r--r--otk_c/color.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/otk_c/color.h b/otk_c/color.h
index 143429a0..b8dff225 100644
--- a/otk_c/color.h
+++ b/otk_c/color.h
@@ -12,15 +12,12 @@ typedef struct OtkColor {
PyObject_HEAD
int red, green, blue;
int screen;
- Bool allocated;
unsigned long pixel;
} OtkColor;
PyObject *OtkColor_FromRGB(int r, int g, int b, int screen);
PyObject *OtkColor_FromName(const char *name, int screen);
-unsigned long OtkColor_Pixel(OtkColor *self);
-
void OtkColor_CleanupColorCache();
#endif // __color_h