express: Move row_color_simple_create function prototype

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-05-04 18:53:01 -04:00
parent 6490eacd29
commit 29200c9c1f
2 changed files with 3 additions and 4 deletions

View File

@ -183,10 +183,6 @@ void _grid_resize(Evas_Object *obj, int nw, int nh);
void _grid_text_append(Evas_Object *obj, const char *txt, int len, Row_Color *color);
void _grid_nicklen_set(Evas_Object *obj, int len);
/* Creates a Row_Color struct with the forground color passed in
* and no overrides, this is enough for most cases */
Row_Color *_row_color_simple_create(int fg_primary_color);
#define GRID_CELLS(SD, X, Y) \
SD->cells[X + (((Y + SD->circular_offset) % SD->h) * SD->w)]

View File

@ -73,3 +73,6 @@ struct _Row_Color
int bg_primary_color;
};
/* Creates a Row_Color struct with the forground color passed in
* and no overrides, this is enough for most cases */
Row_Color *_row_color_simple_create(int fg_primary_color);