Introduce shared/defines.h to collect commonly used macros. For now

it defines min() / max() macros.
This commit is contained in:
mmdolze
2009-11-22 15:15:53 +00:00
parent 30447dd905
commit 73b7ec00ff
12 changed files with 35 additions and 25 deletions
+1
View File
@@ -13,6 +13,7 @@ v.0.5dev (ongoing development)
* configure: Fix de-selecting of drivers
* Build system: Add a check testing if SA_RESTART flag is available.
* picolcd driver: Fix RC-5 for picoLCD 20x2 (A. van Schie)
* Introduce shared/defines.h to collect commonly used macros
v0.5.3
+ lcdexec: notification when called program finishes
+2 -8
View File
@@ -1,6 +1,8 @@
#ifndef MAIN_H
#define MAIN_H
#include "shared/defines.h"
#ifndef TRUE
# define TRUE 1
#endif
@@ -61,12 +63,4 @@ const char *get_hostname(void);
const char *get_sysname(void);
const char *get_sysrelease(void);
#ifndef min
# define min(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef max
# define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
#endif
+2 -2
View File
@@ -1,11 +1,11 @@
#ifndef LCDVC_H
#define LCDVC_H
#include "shared/defines.h"
#define CHAIN(e,f) { if( e>=0 ) { e=(f); }}
#define CHAIN_END(e) { if( e<0 ) { report( RPT_CRIT,"Critical error, abort"); exit(e); }}
#define min(a,b) ((a)<(b))?(a):(b)
#define UNSET_INT -1
#define UNSET_STR "\01"
+3 -3
View File
@@ -60,17 +60,17 @@
#include <string.h>
#include <sys/time.h>
#include <time.h>
#include "lcd.h"
#include "pylcd.h"
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "shared/defines.h"
#include "lcd.h"
#include "pylcd.h"
#include "lcd_lib.h"
#include "report.h"
#define min(a, b) ((a)<(b) ? (a) : (b))
#define True 1
#define False 0
-3
View File
@@ -225,9 +225,6 @@
#include <errno.h>
#include <stdlib.h>
#define min(a,b) (((a) < (b)) ? (a) : (b))
#define max(a,b) (((a) > (b)) ? (a) : (b))
// Autorepeat values
#define KEYPAD_AUTOREPEAT_DELAY 500
#define KEYPAD_AUTOREPEAT_FREQ 15
+1 -1
View File
@@ -55,6 +55,7 @@
/* TODO: fill in what to include otherwise */
#include "shared/report.h"
#include "shared/defines.h"
#include "drivers.h"
#include "sock.h"
@@ -70,7 +71,6 @@
#include "drivers.h"
#include "main.h"
#if !defined(SYSCONFDIR)
# define SYSCONFDIR "/etc"
#endif
-3
View File
@@ -24,9 +24,6 @@
# define false 0
#endif
#define min(a,b) (((a) < (b)) ? (a) : (b))
#define max(a,b) (((a) > (b)) ? (a) : (b))
#include "shared/LL.h"
/** A Menu is a MenuItem too.
+1
View File
@@ -19,6 +19,7 @@
#include <assert.h>
#include "shared/report.h"
#include "shared/defines.h"
#include "menuitem.h"
#include "menuscreens.h"
-3
View File
@@ -35,9 +35,6 @@
# define false 0
#endif
#define max(a,b) (((a) > (b)) ? (a) : (b))
#define min(a,b) (((a) < (b)) ? (a) : (b))
/*********************************************************************
* Data definitions of the menustuff
*/
+1 -1
View File
@@ -30,6 +30,7 @@
#include "shared/report.h"
#include "shared/LL.h"
#include "shared/defines.h"
#include "drivers.h"
@@ -40,7 +41,6 @@
#define BUFSIZE 1024 /* larger than display width => large enough */
int heartbeat = HEARTBEAT_OPEN;
static int heartbeat_fallback = HEARTBEAT_ON; /* If no heartbeat setting has been set at all */
+1 -1
View File
@@ -8,6 +8,6 @@ libLCDstuff_a_LIBADD = @LIBOBJS@
AM_CPPFLAGS = -I$(top_srcdir)
EXTRA_DIST = getopt.c getopt1.c getopt.h
EXTRA_DIST = getopt.c getopt1.c getopt.h defines.h
## EOF
+23
View File
@@ -0,0 +1,23 @@
/** \file shared/defines.h
* Define macros commonly used in other parts of LCDproc.
*/
/*-
* This file is part of LCDproc.
*
* This file is released under the GNU General Public License.
* Refer to the COPYING file distributed with this package.
*/
#ifndef SHARED_DEFINES_H
#define SHARED_DEFINES_H
/* Define min() and max() */
#ifndef min
# define min(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef max
# define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
#endif