You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
240 B
C++

#ifndef ATOMS_H
#define ATOMS_H
#include <X11/Xlib.h>
class Atoms {
public:
Atoms();
Atom wm_protocols;
Atom wm_delete_window;
Atom wm_take_focus;
Atom kwm_win_icon; // compatibility
};
extern Atoms* atoms;
#endif