all repos — tint2 @ 58e030de5d4ad86c8ee0d9342d3a1d862f37e406

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/util/bool.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef BOOL_H
#define BOOL_H

#ifndef bool
#define bool int
#define false 0
#define true 1
#endif

#define SUCCESS true
#define FAILURE false

#ifndef Status
typedef int Status;
#endif

#endif