2007-12-08 17:42:33 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
/// \file private.h
|
|
|
|
/// \brief Common includes, definions, and prototypes
|
|
|
|
//
|
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"
|
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>
|
|
|
|
|
2008-11-19 13:46:52 -05:00
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
# include <libintl.h>
|
|
|
|
# define _(msgid) gettext(msgid)
|
|
|
|
# define N_(msgid1, msgid2, n) ngettext(msgid1, msgid2, n)
|
|
|
|
#else
|
|
|
|
# define _(msgid) (msgid)
|
|
|
|
# define N_(msgid1, msgid2, n) ((n) == 1 ? (msgid1) : (msgid2))
|
|
|
|
#endif
|
2007-12-08 17:42:33 -05:00
|
|
|
|
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
|
|
|
|
|
2008-11-19 13:46:52 -05:00
|
|
|
#include "main.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"
|