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>
|
|
|
|
|
2009-09-19 02:47:30 -04:00
|
|
|
#include "tuklib_gettext.h"
|
|
|
|
#include "tuklib_progname.h"
|
|
|
|
#include "tuklib_exit.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
|
|
|
|
|
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"
|
2010-01-24 16:50:54 -05:00
|
|
|
#include "list.h"
|