Files
zoitechat/src/fe-gtk/xtext-color.h

21 lines
430 B
C
Raw Normal View History

/* ZoiteChat
*
* 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 of the License, or
* (at your option) any later version.
*/
#ifndef HEXCHAT_XTEXT_COLOR_H
#define HEXCHAT_XTEXT_COLOR_H
typedef struct
{
double red;
double green;
double blue;
double alpha;
} XTextColor;
#endif