brewpanel/brewpanel.h

Sat, 07 Nov 2015 22:34:28 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 07 Nov 2015 22:34:28 +0100
changeset 410
e3f8a51b566a
parent 409
cdf68044adaf
child 420
644a6106d712
permissions
-rw-r--r--

Fixed compiling on systems without SDL libraries, and they don't need tha brewpanel program.

#ifndef	_BREWPANEL_H
#define	_BREWPANEL_H

#define TRUE 1
#define FALSE 0

#include "../config.h"

#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <time.h>
#include <fcntl.h>
#include <syslog.h>
#include <unistd.h>
#include <errno.h>
#include <signal.h>
#include <getopt.h>

#ifdef HAVE_SDL_SDL_H
#include <SDL.h>
#include <SDL_ttf.h>
#endif

#endif

mercurial