polybar-dwm/include/x11/extensions/damage.hpp

24 lines
313 B
C++
Raw Normal View History

2016-11-20 23:04:31 +01:00
#pragma once
2017-01-11 03:07:28 +01:00
#include "settings.hpp"
2016-11-20 23:04:31 +01:00
#if not WITH_XDAMAGE
2016-11-20 23:04:31 +01:00
#error "X Damage extension is disabled..."
#endif
2016-11-26 15:42:48 +01:00
#include <xcb/damage.h>
2016-11-20 23:04:31 +01:00
#include <xpp/proto/damage.hpp>
2016-12-21 14:55:19 +01:00
#include "common.hpp"
POLYBAR_NS
// fwd
class connection;
namespace damage_util {
void query_extension(connection& conn);
}
POLYBAR_NS_END