structs: rename to globalconf
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
b9df512f3a
commit
5b718cdacb
2
button.h
2
button.h
|
@ -22,7 +22,7 @@
|
|||
#ifndef AWESOME_BUTTON_H
|
||||
#define AWESOME_BUTTON_H
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
|
||||
/** Mouse buttons bindings */
|
||||
struct button_t
|
||||
|
|
2
color.c
2
color.c
|
@ -23,7 +23,7 @@
|
|||
#include <ctype.h>
|
||||
|
||||
#include "color.h"
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "common/xutil.h"
|
||||
|
||||
#define RGB_8TO16(i) (0xffff * ((i) & 0xff) / 0xff)
|
||||
|
|
2
draw.c
2
draw.c
|
@ -29,7 +29,7 @@
|
|||
#include <ctype.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "screen.h"
|
||||
|
||||
#include "common/tokenize.h"
|
||||
|
|
2
ewmh.h
2
ewmh.h
|
@ -22,7 +22,7 @@
|
|||
#ifndef AWESOME_EWMH_H
|
||||
#define AWESOME_EWMH_H
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "strut.h"
|
||||
|
||||
void ewmh_init(int);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* structs.h - basic structs header
|
||||
* globalconf.h - basic globalconf.header
|
||||
*
|
||||
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
||||
* Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -19,8 +19,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef AWESOME_STRUCTS_H
|
||||
#define AWESOME_STRUCTS_H
|
||||
#ifndef AWESOME_GLOBALCONF_H
|
||||
#define AWESOME_GLOBALCONF_H
|
||||
|
||||
#define SN_API_NOT_YET_FROZEN
|
||||
#include <libsn/sn.h>
|
2
hooks.c
2
hooks.c
|
@ -19,7 +19,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "luaa.h"
|
||||
|
||||
#define HANDLE_HOOK(L, h) \
|
||||
|
|
2
image.c
2
image.c
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include <Imlib2.h>
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "luaa.h"
|
||||
#include "common/luaobject.h"
|
||||
|
||||
|
|
2
key.c
2
key.c
|
@ -27,7 +27,7 @@
|
|||
#include <X11/keysym.h>
|
||||
#include <X11/XF86keysym.h>
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "luaa.h"
|
||||
#include "common/xutil.h"
|
||||
#include "common/luaobject.h"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include <unistd.h>
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "keygrabber.h"
|
||||
#include "key.h"
|
||||
#include "luaa.h"
|
||||
|
|
2
mouse.c
2
mouse.c
|
@ -22,7 +22,7 @@
|
|||
#include "mouse.h"
|
||||
#include "screen.h"
|
||||
#include "client.h"
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "wibox.h"
|
||||
#include "luaa.h"
|
||||
#include "common/tokenize.h"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include <unistd.h>
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "mouse.h"
|
||||
#include "mousegrabber.h"
|
||||
#include "luaa.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#ifndef AWESOME_PROPERTY_H
|
||||
#define AWESOME_PROPERTY_H
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
|
||||
void property_update_wm_transient_for(client_t *, xcb_get_property_reply_t *);
|
||||
void property_update_wm_client_leader(client_t *c, xcb_get_property_reply_t *);
|
||||
|
|
2
root.c
2
root.c
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include <xcb/xtest.h>
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "button.h"
|
||||
#include "wibox.h"
|
||||
#include "luaa.h"
|
||||
|
|
2
screen.h
2
screen.h
|
@ -22,7 +22,7 @@
|
|||
#ifndef AWESOME_SCREEN_H
|
||||
#define AWESOME_SCREEN_H
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
|
||||
struct a_screen
|
||||
{
|
||||
|
|
2
spawn.h
2
spawn.h
|
@ -22,7 +22,7 @@
|
|||
#ifndef AWESOME_SPAWN_H
|
||||
#define AWESOME_SPAWN_H
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
|
||||
void spawn_init(void);
|
||||
void spawn_start_notify(client_t *, const char *);
|
||||
|
|
2
stack.h
2
stack.h
|
@ -22,7 +22,7 @@
|
|||
#ifndef AWESOME_STACK_H
|
||||
#define AWESOME_STACK_H
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
|
||||
void stack_client_remove(client_t *);
|
||||
void stack_client_push(client_t *);
|
||||
|
|
2
timer.c
2
timer.c
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include <ev.h>
|
||||
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "luaa.h"
|
||||
#include "timer.h"
|
||||
#include "common/luaobject.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* systray.c - systray widget
|
||||
*
|
||||
* Copyright © 2008 Julien Danjou <julien@danjou.info>
|
||||
* Copyright © 2008-2009 Julien Danjou <julien@danjou.info>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -25,7 +25,7 @@
|
|||
#include "widget.h"
|
||||
#include "screen.h"
|
||||
#include "wibox.h"
|
||||
#include "structs.h"
|
||||
#include "globalconf.h"
|
||||
#include "common/xembed.h"
|
||||
#include "common/atoms.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue