Fix build by #if 0 out unused de_sgsap_tmsi() function.
[obnox/wireshark/wip.git] / color.h
diff --git a/color.h b/color.h
index a94526dfade7a44a6a4fec1a2d7c285237ff15b6..622b6ab7f1a28d42b11bf8cdf7dbf7107891d63b 100644 (file)
--- a/color.h
+++ b/color.h
@@ -1,13 +1,12 @@
 /* color.h
  * Definitions for "toolkit-independent" colors
  *
- * $Id: color.h,v 1.2 2002/08/28 21:00:06 jmayer Exp $
+ * $Id$
  *
- * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
- *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
@@ -42,4 +41,15 @@ typedef struct {
        guint16 blue;
 } color_t;
 
+/** Initialize a color with R, G, and B values, including any toolkit-dependent
+ ** work that needs to be done.
+ *
+ * @param color the color_t to be filled
+ * @param red the red value for the color
+ * @param green the green value for the color
+ * @param blue the blue value for the color
+ * @return TRUE if it succeeds, FALSE if it fails
+ */
+gboolean initialize_color(color_t *color, guint16 red, guint16 green, guint16 blue);
+
 #endif