mirror of
https://github.com/0intro/wmii
synced 2024-11-25 07:09:38 +03:00
10 lines
211 B
C
10 lines
211 B
C
/* Copyright ©2007-2010 Kris Maglione <maglione.k at Gmail>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
#include "x11.h"
|
|
|
|
void
|
|
setgccol(Image *dst, Color col) {
|
|
XSetForeground(display, dst->gc, col.pixel);
|
|
}
|