2007-12-08 17:42:33 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
/// \file private.h
|
2019-05-08 01:30:57 -04:00
|
|
|
/// \brief Common includes, definitions, and prototypes
|
2007-12-08 17:42:33 -05:00
|
|
|
//
|
2009-04-13 04:27:40 -04:00
|
|
|
// Author: Lasse Collin
|
2007-12-08 17:42:33 -05:00
|
|
|
//
|
2009-04-13 04:27:40 -04:00
|
|
|
// This file has been put into the public domain.
|
|
|
|
// You can do whatever you want with this file.
|
2007-12-08 17:42:33 -05:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "sysdefs.h"
|
2009-01-07 11:41:15 -05:00
|
|
|
#include "mythread.h"
|
2011-04-12 05:42:37 -04:00
|
|
|
|
2009-01-31 04:01:48 -05:00
|
|
|
#include "lzma.h"
|
2007-12-08 17:42:33 -05:00
|
|
|
|
2008-11-19 13:46:52 -05:00
|
|
|
#include <sys/types.h>
|
2007-12-08 17:42:33 -05:00
|
|
|
#include <sys/stat.h>
|
2008-11-19 13:46:52 -05:00
|
|
|
#include <errno.h>
|
2007-12-08 17:42:33 -05:00
|
|
|
#include <signal.h>
|
|
|
|
#include <locale.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2009-09-19 02:47:30 -04:00
|
|
|
#include "tuklib_gettext.h"
|
|
|
|
#include "tuklib_progname.h"
|
|
|
|
#include "tuklib_exit.h"
|
2010-09-10 03:30:33 -04:00
|
|
|
#include "tuklib_mbstr.h"
|
2007-12-08 17:42:33 -05:00
|
|
|
|
2010-06-02 14:32:12 -04:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
# define WIN32_LEAN_AND_MEAN
|
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2009-02-05 02:12:57 -05:00
|
|
|
#ifndef STDIN_FILENO
|
|
|
|
# define STDIN_FILENO (fileno(stdin))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef STDOUT_FILENO
|
|
|
|
# define STDOUT_FILENO (fileno(stdout))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef STDERR_FILENO
|
|
|
|
# define STDERR_FILENO (fileno(stderr))
|
|
|
|
#endif
|
|
|
|
|
2022-10-25 14:11:58 -04:00
|
|
|
#if defined(HAVE_CAPSICUM) || defined(HAVE_PLEDGE)
|
2015-03-31 15:19:34 -04:00
|
|
|
# define ENABLE_SANDBOX 1
|
|
|
|
#endif
|
|
|
|
|
2008-11-19 13:46:52 -05:00
|
|
|
#include "main.h"
|
2013-07-04 05:51:57 -04:00
|
|
|
#include "mytime.h"
|
2009-06-26 13:49:54 -04:00
|
|
|
#include "coder.h"
|
2008-11-19 13:46:52 -05:00
|
|
|
#include "message.h"
|
2007-12-08 17:42:33 -05:00
|
|
|
#include "args.h"
|
|
|
|
#include "hardware.h"
|
2009-06-26 13:49:54 -04:00
|
|
|
#include "file_io.h"
|
2007-12-08 17:42:33 -05:00
|
|
|
#include "options.h"
|
2009-02-05 02:12:57 -05:00
|
|
|
#include "signals.h"
|
2007-12-08 17:42:33 -05:00
|
|
|
#include "suffix.h"
|
|
|
|
#include "util.h"
|
2015-11-03 13:29:33 -05:00
|
|
|
|
|
|
|
#ifdef HAVE_DECODERS
|
|
|
|
# include "list.h"
|
|
|
|
#endif
|