mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 18:01:37 -05:00
bool is a real type
This commit is contained in:
parent
962403f325
commit
e31accb4b8
9 changed files with 7 additions and 18 deletions
1
bspwm.c
1
bspwm.c
|
@ -12,7 +12,6 @@
|
|||
#include <xcb/xcb.h>
|
||||
#include <xcb/xcb_event.h>
|
||||
#include <xcb/xcb_ewmh.h>
|
||||
#include "helpers.h"
|
||||
#include "types.h"
|
||||
#include "settings.h"
|
||||
#include "messages.h"
|
||||
|
|
1
events.c
1
events.c
|
@ -4,7 +4,6 @@
|
|||
#include <xcb/xcb.h>
|
||||
#include <xcb/xcb_icccm.h>
|
||||
#include <xcb/xcb_event.h>
|
||||
#include "helpers.h"
|
||||
#include "types.h"
|
||||
#include "bspwm.h"
|
||||
#include "settings.h"
|
||||
|
|
|
@ -18,9 +18,4 @@
|
|||
# define PRINTF(x) ;
|
||||
#endif
|
||||
|
||||
typedef enum {
|
||||
false,
|
||||
true
|
||||
} bool;
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include "helpers.h"
|
||||
#include "settings.h"
|
||||
#include "messages.h"
|
||||
#include "common.h"
|
||||
|
|
|
@ -4,8 +4,6 @@
|
|||
#include <unistd.h>
|
||||
#include <xcb/xcb.h>
|
||||
#include <xcb/xcb_event.h>
|
||||
#include "helpers.h"
|
||||
#include "types.h"
|
||||
#include "bspwm.h"
|
||||
#include "misc.h"
|
||||
#include "common.h"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include <xcb/xcb.h>
|
||||
#include <xcb/xcb_event.h>
|
||||
#include "helpers.h"
|
||||
#include "types.h"
|
||||
|
||||
#define WM_NAME "bspwm"
|
||||
#define CONFIG_FILE "bspwmrc"
|
||||
|
|
1
tree.c
1
tree.c
|
@ -5,7 +5,6 @@
|
|||
#include <xcb/xcb.h>
|
||||
#include <xcb/xcb_event.h>
|
||||
#include "settings.h"
|
||||
#include "helpers.h"
|
||||
#include "misc.h"
|
||||
#include "window.h"
|
||||
#include "types.h"
|
||||
|
|
1
types.h
1
types.h
|
@ -1,6 +1,7 @@
|
|||
#ifndef _TYPES_H
|
||||
#define _TYPES_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <xcb/xcb.h>
|
||||
#include <xcb/xcb_event.h>
|
||||
#include "helpers.h"
|
||||
|
|
1
window.c
1
window.c
|
@ -4,7 +4,6 @@
|
|||
#include <string.h>
|
||||
#include <xcb/xcb.h>
|
||||
#include <xcb/xcb_event.h>
|
||||
#include "helpers.h"
|
||||
#include "types.h"
|
||||
#include "tree.h"
|
||||
#include "bspwm.h"
|
||||
|
|
Loading…
Add table
Reference in a new issue