mirror of https://github.com/0intro/wmii
Include wmii.h last.
This commit is contained in:
parent
d1ead722a2
commit
4dce9d067b
2
area.c
2
area.c
|
@ -2,12 +2,12 @@
|
|||
* (C)opyright MMVI-MMVII Kris Maglione <fbsdaemon@gmail.com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include "wmii.h"
|
||||
|
||||
static void place_client(Area *a, Client *c);
|
||||
|
||||
|
|
2
bar.c
2
bar.c
|
@ -2,10 +2,10 @@
|
|||
* (C)opyright MMVI-MMVII Kris Maglione <fbsdaemon@gmail.com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <math.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include "wmii.h"
|
||||
|
||||
Bar *free_bars = nil;
|
||||
|
||||
|
|
2
client.c
2
client.c
|
@ -2,11 +2,11 @@
|
|||
* (C)opyright MMVI-MMVII Kris Maglione <fbsdaemon@gmail.com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <X11/Xatom.h>
|
||||
#include "wmii.h"
|
||||
|
||||
static void update_client_name(Client *c);
|
||||
|
||||
|
|
2
column.c
2
column.c
|
@ -2,11 +2,11 @@
|
|||
* (C)opyright MMVI-MMVII Kris Maglione <fbsdaemon@gmail.com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include "wmii.h"
|
||||
|
||||
char *
|
||||
str_of_column_mode(int mode) {
|
||||
|
|
2
draw.c
2
draw.c
|
@ -1,10 +1,10 @@
|
|||
/* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "wmii.h"
|
||||
|
||||
uint
|
||||
textwidth_l(BlitzFont *font, char *text, uint len) {
|
||||
|
|
2
event.c
2
event.c
|
@ -2,11 +2,11 @@
|
|||
* (C)opyright MMVI-MMVII Kris Maglione <fbsdaemon@gmail.com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <fcntl.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <X11/keysym.h>
|
||||
#include "wmii.h"
|
||||
#include "printevent.h"
|
||||
|
||||
uint
|
||||
|
|
2
frame.c
2
frame.c
|
@ -1,9 +1,9 @@
|
|||
/* (C)opyright MMVI-MMVII Kris Maglione <fbsdaemon@gmail.com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "wmii.h"
|
||||
|
||||
Frame *
|
||||
create_frame(Client *c, View *v) {
|
||||
|
|
2
fs.c
2
fs.c
|
@ -1,13 +1,13 @@
|
|||
/* (C)opyright MMVI Kris Maglione <fbsdaemon at gmail dot com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <assert.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include "wmii.h"
|
||||
|
||||
|
||||
/* Datatypes: */
|
||||
|
|
2
key.c
2
key.c
|
@ -1,11 +1,11 @@
|
|||
/* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <X11/Xlib.h>
|
||||
#include <X11/keysym.h>
|
||||
#include "wmii.h"
|
||||
|
||||
void
|
||||
init_lock_keys() {
|
||||
|
|
2
main.c
2
main.c
|
@ -2,7 +2,6 @@
|
|||
* (C)opyright MMVI-MMVII Kris Maglione <fbsdaemon@gmail.com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <X11/Xatom.h>
|
||||
#include <X11/Xproto.h>
|
||||
#include <X11/cursorfont.h>
|
||||
|
@ -18,6 +17,7 @@
|
|||
#include <sys/stat.h>
|
||||
#include <sys/wait.h>
|
||||
#include <unistd.h>
|
||||
#include "wmii.h"
|
||||
|
||||
static Bool check_other_wm;
|
||||
static int (*x_error_handler) (Display *, XErrorEvent *);
|
||||
|
|
2
mouse.c
2
mouse.c
|
@ -1,10 +1,10 @@
|
|||
/* (C)opyright MMVI Kris Maglione <fbsdaemon@gmail.com>
|
||||
* See LICENSE file for license details.
|
||||
*/
|
||||
#include "wmii.h"
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include "wmii.h"
|
||||
|
||||
enum {
|
||||
ButtonMask =
|
||||
|
|
|
@ -43,10 +43,10 @@ can get it touch with me at the following location:
|
|||
ken@richsun.UUCP
|
||||
*/
|
||||
|
||||
#include "wmii.h"
|
||||
#include <stdio.h>
|
||||
#include <X11/Intrinsic.h>
|
||||
#include <X11/Xproto.h>
|
||||
#include "wmii.h"
|
||||
#include "printevent.h"
|
||||
|
||||
static char* sep = " ";
|
||||
|
|
2
util.c
2
util.c
|
@ -1,10 +1,10 @@
|
|||
/* Written by Kris Maglione <fbsdaemon at gmail dot com> */
|
||||
/* Public domain */
|
||||
#include "wmii.h"
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "wmii.h"
|
||||
|
||||
void
|
||||
fatal(const char *fmt, ...) {
|
||||
|
|
Loading…
Reference in New Issue