mc/src/global.h

126 lines
2.0 KiB
C
Raw Normal View History

/*
* This file should be included after all system includes and before
* all local includes.
*/
#ifndef __MC_GLOBAL_H
#define __MC_GLOBAL_H
1998-02-27 07:54:42 +03:00
#include <stdlib.h> /* for free() and other usefull routins */
#ifdef _OS_NT
# include <windows.h>
# include <io.h>
#ifdef _MSC_VER
# include <direct.h> /* from mkdir() */
#endif
#endif
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
#ifdef HAVE_SYS_TIMEB_H
# include <sys/timeb.h>
#endif
#ifdef TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
#if !defined(HAVE_SYS_TIME_H) && !defined(_OS_NT)
struct timeval {
long int tv_sec; /* seconds */
long int tv_usec; /* microseconds */
};
#endif /* !HAVE_SYS_TIME_H */
#ifdef HAVE_UTIME_H
# include <utime.h>
2002-01-22 00:29:55 +03:00
#elif defined(HAVE_SYS_UTIME_H)
# include <sys/utime.h>
#endif
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#ifdef HAVE_GRP_H
# include <grp.h>
#endif
#ifdef HAVE_PWD_H
# include <pwd.h>
#endif
#include <glib.h>
#ifndef __GNUC__
# define __attribute__(x)
#endif
#ifndef HAVE_GETUID
# define getuid() 0
#endif
#ifndef HAVE_GETGID
# define getgid() 0
#endif
#ifndef HAVE_GETEUID
# define geteuid() getuid()
#endif
#ifndef HAVE_GETEGID
# define getegid() getgid()
#endif
#include "fs.h"
#include "mem.h"
#include "util.h"
#include "mad.h"
#include "textconf.h"
1998-02-27 07:54:42 +03:00
extern char *home_dir;
#ifdef min
#undef min
#endif
#ifdef max
#undef max
#endif
#define min(x, y) ((x) > (y) ? (y) : (x))
#define max(x, y) ((x) > (y) ? (x) : (y))
1998-02-27 07:54:42 +03:00
/* Just for keeping Your's brains from invention a proper size of the buffer :-) */
#define BUF_10K 10240L
#define BUF_8K 8192L
#define BUF_4K 4096L
#define BUF_1K 1024L
1998-02-27 07:54:42 +03:00
#define BUF_LARGE BUF_1K
#define BUF_MEDIUM 512
#define BUF_SMALL 128
#define BUF_TINY 64
void refresh_screen (void *);
1998-02-27 07:54:42 +03:00
/* AIX compiler doesn't understand '\e' */
#define ESC_CHAR '\033'
#define ESC_STR "\033"
#define xgetch getch
1998-02-27 07:54:42 +03:00
#endif /* !__MC_GLOBAL_H */