1999-11-13 23:23:35 +01:00
|
|
|
/*
|
|
|
|
* Wine porting definitions
|
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* Copyright 1996 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1999-11-13 23:23:35 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_WINE_PORT_H
|
|
|
|
#define __WINE_WINE_PORT_H
|
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
#ifndef __WINE_CONFIG_H
|
|
|
|
# error You must include config.h to use this header
|
|
|
|
#endif
|
2001-07-26 23:43:29 +02:00
|
|
|
|
2007-05-22 18:12:05 +02:00
|
|
|
#ifdef __WINE_BASETSD_H
|
|
|
|
# error You must include port.h before all other headers
|
|
|
|
#endif
|
|
|
|
|
2013-09-19 20:50:55 +02:00
|
|
|
#ifndef _GNU_SOURCE
|
2013-12-05 11:31:20 +01:00
|
|
|
# define _GNU_SOURCE /* for pread/pwrite, isfinite */
|
2013-09-19 20:50:55 +02:00
|
|
|
#endif
|
2001-05-16 21:45:34 +02:00
|
|
|
#include <fcntl.h>
|
2003-07-15 22:45:49 +02:00
|
|
|
#include <math.h>
|
1999-11-13 23:23:35 +01:00
|
|
|
#include <sys/types.h>
|
2000-12-06 21:20:11 +01:00
|
|
|
#include <sys/stat.h>
|
2002-03-11 06:08:38 +01:00
|
|
|
#include <string.h>
|
2013-01-08 22:06:25 +01:00
|
|
|
#include <stdlib.h>
|
2002-03-11 06:08:38 +01:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
1999-11-13 23:23:35 +01:00
|
|
|
|
|
|
|
|
2019-03-13 17:05:06 +01:00
|
|
|
/****************************************************************
|
|
|
|
* Hard-coded values for the Windows platform
|
|
|
|
*/
|
|
|
|
|
2019-12-16 11:59:46 +01:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
2019-03-13 17:05:06 +01:00
|
|
|
|
|
|
|
#include <direct.h>
|
|
|
|
#include <io.h>
|
|
|
|
#include <process.h>
|
|
|
|
|
2019-03-13 17:14:48 +01:00
|
|
|
#define mkdir(path,mode) mkdir(path)
|
|
|
|
|
2020-04-06 11:43:55 +02:00
|
|
|
static inline void *dlopen(const char *name, int flags) { return NULL; }
|
|
|
|
static inline void *dlsym(void *handle, const char *name) { return NULL; }
|
|
|
|
static inline int dlclose(void *handle) { return 0; }
|
|
|
|
static inline const char *dlerror(void) { return "No dlopen support on Windows"; }
|
|
|
|
|
2019-03-13 17:12:36 +01:00
|
|
|
#ifdef _MSC_VER
|
2019-03-13 17:05:06 +01:00
|
|
|
|
2019-03-13 17:14:48 +01:00
|
|
|
#define popen _popen
|
|
|
|
#define pclose _pclose
|
2019-11-17 13:43:14 +01:00
|
|
|
/* The UCRT headers in the Windows SDK #error out if we #define snprintf.
|
|
|
|
* The C headers that came with previous Visual Studio versions do not have
|
|
|
|
* snprintf. Check for VS 2015, which appears to be the first version to
|
|
|
|
* use the UCRT headers by default. */
|
|
|
|
#if _MSC_VER < 1900
|
|
|
|
# define snprintf _snprintf
|
|
|
|
#endif
|
2019-03-13 17:14:48 +01:00
|
|
|
#define strtoll _strtoi64
|
|
|
|
#define strtoull _strtoui64
|
|
|
|
#define strncasecmp _strnicmp
|
|
|
|
#define strcasecmp _stricmp
|
|
|
|
|
2019-03-13 17:12:36 +01:00
|
|
|
typedef long off_t;
|
|
|
|
typedef int pid_t;
|
|
|
|
typedef int ssize_t;
|
|
|
|
|
|
|
|
#endif /* _MSC_VER */
|
|
|
|
|
|
|
|
#else /* _WIN32 */
|
2002-04-26 21:05:15 +02:00
|
|
|
|
2019-03-13 17:12:36 +01:00
|
|
|
#ifndef __int64
|
2021-01-31 18:34:12 +01:00
|
|
|
# if defined(__x86_64__) || defined(__aarch64__) || defined(__powerpc64__) || defined(_WIN64)
|
2007-02-02 15:35:15 +01:00
|
|
|
# define __int64 long
|
|
|
|
# else
|
|
|
|
# define __int64 long long
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2019-03-14 16:13:23 +01:00
|
|
|
/* Process creation flags */
|
|
|
|
#ifndef _P_WAIT
|
|
|
|
# define _P_WAIT 0
|
|
|
|
# define _P_NOWAIT 1
|
|
|
|
# define _P_OVERLAY 2
|
|
|
|
# define _P_NOWAITO 3
|
|
|
|
# define _P_DETACH 4
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE__SPAWNVP
|
|
|
|
extern int _spawnvp(int mode, const char *cmdname, const char * const argv[]);
|
|
|
|
#endif
|
|
|
|
|
2019-03-13 17:12:36 +01:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
/****************************************************************
|
|
|
|
* Macro definitions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_DLFCN_H
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#else
|
|
|
|
#define RTLD_LAZY 0x001
|
|
|
|
#define RTLD_NOW 0x002
|
|
|
|
#define RTLD_GLOBAL 0x100
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef S_ISLNK
|
|
|
|
# define S_ISLNK(mod) (0)
|
2004-04-23 01:45:47 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef S_ISDIR
|
|
|
|
# define S_ISDIR(mod) (((mod) & _S_IFMT) == _S_IFDIR)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef S_ISCHR
|
|
|
|
# define S_ISCHR(mod) (((mod) & _S_IFMT) == _S_IFCHR)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef S_ISREG
|
|
|
|
# define S_ISREG(mod) (((mod) & _S_IFMT) == _S_IFREG)
|
|
|
|
#endif
|
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
/* So we open files in 64 bit access mode on Linux */
|
|
|
|
#ifndef O_LARGEFILE
|
|
|
|
# define O_LARGEFILE 0
|
|
|
|
#endif
|
|
|
|
|
2004-02-12 23:39:18 +01:00
|
|
|
#ifndef O_NONBLOCK
|
|
|
|
# define O_NONBLOCK 0
|
|
|
|
#endif
|
2003-07-15 22:45:49 +02:00
|
|
|
|
2004-04-23 01:45:47 +02:00
|
|
|
#ifndef O_BINARY
|
|
|
|
# define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2004-05-25 20:05:39 +02:00
|
|
|
|
2003-07-15 22:45:49 +02:00
|
|
|
/****************************************************************
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef M_PI
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef M_PI_2
|
|
|
|
#define M_PI_2 1.570796326794896619
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
/****************************************************************
|
2003-03-20 23:06:16 +01:00
|
|
|
* Function definitions (only when using libwine_port)
|
2002-04-26 21:05:15 +02:00
|
|
|
*/
|
|
|
|
|
2013-06-16 17:07:55 +02:00
|
|
|
#ifndef HAVE_GETOPT_LONG_ONLY
|
2003-03-19 23:44:55 +01:00
|
|
|
extern char *optarg;
|
|
|
|
extern int optind;
|
|
|
|
extern int opterr;
|
|
|
|
extern int optopt;
|
2003-04-20 04:56:14 +02:00
|
|
|
struct option;
|
2003-03-19 23:44:55 +01:00
|
|
|
|
2003-04-20 04:56:14 +02:00
|
|
|
#ifndef HAVE_STRUCT_OPTION_NAME
|
2003-03-19 23:44:55 +01:00
|
|
|
struct option
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
int has_arg;
|
|
|
|
int *flag;
|
|
|
|
int val;
|
|
|
|
};
|
2003-04-20 04:56:14 +02:00
|
|
|
#endif
|
2003-03-19 23:44:55 +01:00
|
|
|
|
|
|
|
extern int getopt_long (int ___argc, char *const *___argv,
|
|
|
|
const char *__shortopts,
|
|
|
|
const struct option *__longopts, int *__longind);
|
|
|
|
extern int getopt_long_only (int ___argc, char *const *___argv,
|
|
|
|
const char *__shortopts,
|
|
|
|
const struct option *__longopts, int *__longind);
|
2013-06-16 17:07:55 +02:00
|
|
|
#endif /* HAVE_GETOPT_LONG_ONLY */
|
2003-03-19 23:44:55 +01:00
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
#ifndef HAVE_LSTAT
|
|
|
|
int lstat(const char *file_name, struct stat *buf);
|
|
|
|
#endif /* HAVE_LSTAT */
|
|
|
|
|
2004-01-08 06:07:05 +01:00
|
|
|
#ifndef HAVE_READLINK
|
|
|
|
int readlink( const char *path, char *buf, size_t size );
|
|
|
|
#endif /* HAVE_READLINK */
|
|
|
|
|
2008-12-22 10:47:16 +01:00
|
|
|
#ifndef HAVE_SYMLINK
|
|
|
|
int symlink(const char *from, const char *to);
|
|
|
|
#endif
|
|
|
|
|
2003-03-20 22:07:49 +01:00
|
|
|
extern int mkstemps(char *template, int suffix_len);
|
|
|
|
|
1999-11-13 23:23:35 +01:00
|
|
|
#endif /* !defined(__WINE_WINE_PORT_H) */
|