VirtualBox

source: kBuild/trunk/src/kmk/kmkbuiltin/mscfakes.h@ 2204

Last change on this file since 2204 was 2204, checked in by bird, 16 years ago

kmk: strlcpy build fix for windows.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 KB
Line 
1/* $Id: mscfakes.h 2204 2009-01-06 21:40:08Z bird $ */
2/** @file
3 * Unix fakes for MSC.
4 */
5
6/*
7 * Copyright (c) 2005-2008 knut st. osmundsen <[email protected]>
8 *
9 * This file is part of kBuild.
10 *
11 * kBuild is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * kBuild is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with kBuild. If not, see <http://www.gnu.org/licenses/>
23 *
24 */
25
26#ifndef ___mscfakes_h
27#define ___mscfakes_h
28#ifdef _MSC_VER
29
30#include <io.h>
31#include <direct.h>
32#include <time.h>
33#include <stdarg.h>
34#include <malloc.h>
35#include "getopt.h"
36
37#if defined(MSC_DO_64_BIT_IO) && _MSC_VER >= 1400 /* We want 64-bit file lengths here when possible. */
38# define off_t __int64
39# define stat _stat64
40# define fstat _fstat64
41# define lseek _lseeki64
42#else
43# undef stat
44# define stat(_path, _st) my_other_stat(_path, _st)
45extern int my_other_stat(const char *, struct stat *);
46#endif
47
48
49
50#ifndef S_ISDIR
51# define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
52#endif
53#ifndef S_ISREG
54# define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
55#endif
56#define S_ISLNK(m) 0
57#define S_IRWXU (_S_IREAD | _S_IWRITE | _S_IEXEC)
58#define S_IXUSR _S_IEXEC
59#define S_IWUSR _S_IWRITE
60#define S_IRUSR _S_IREAD
61#define S_IRWXG 0000070
62#define S_IRGRP 0000040
63#define S_IWGRP 0000020
64#define S_IXGRP 0000010
65#define S_IRWXO 0000007
66#define S_IROTH 0000004
67#define S_IWOTH 0000002
68#define S_IXOTH 0000001
69#define S_ISUID 0004000
70#define S_ISGID 0002000
71#define ALLPERMS 0000777
72
73#undef PATH_MAX
74#define PATH_MAX _MAX_PATH
75#undef MAXPATHLEN
76#define MAXPATHLEN _MAX_PATH
77
78#define EX_OK 0
79#define EX_OSERR 1
80#define EX_NOUSER 1
81#define EX_USAGE 1
82
83#define STDIN_FILENO 0
84#define STDOUT_FILENO 1
85#define STDERR_FILENO 2
86
87#define F_OK 0
88#define X_OK 1
89#define W_OK 2
90#define R_OK 4
91
92#define EFTYPE EINVAL
93
94#define _PATH_DEVNULL "/dev/null"
95
96#ifndef MAX
97# define MAX(a,b) ((a) >= (b) ? (a) : (b))
98#endif
99
100typedef int mode_t;
101typedef unsigned short nlink_t;
102#if 0 /* found in config.h */
103typedef unsigned short uid_t;
104typedef unsigned short gid_t;
105#endif
106typedef long ssize_t;
107typedef unsigned long u_long;
108typedef unsigned int u_int;
109typedef unsigned short u_short;
110
111#ifndef timerisset
112struct timeval
113{
114 long tv_sec;
115 long tv_usec;
116};
117#endif
118
119struct iovec
120{
121 char *iov_base;
122 size_t iov_len;
123};
124
125typedef __int64 intmax_t;
126#if 0 /* found in config.h */
127typedef unsigned __int64 uintmax_t;
128#endif
129
130#define chown(path, uid, gid) 0 /** @todo implement fchmod! */
131char *dirname(char *path);
132#define fsync(fd) 0
133#define fchown(fd,uid,gid) 0
134#define fchmod(fd, mode) 0 /** @todo implement fchmod! */
135#define geteuid() 0
136#define getegid() 0
137#define lstat(path, s) stat(path, s)
138int lchmod(const char *path, mode_t mode);
139int msc_chmod(const char *path, mode_t mode);
140#define chmod msc_chmod
141#define lchown(path, uid, gid) chown(path, uid, gid)
142#define lutimes(path, tvs) utimes(path, tvs)
143int link(const char *pszDst, const char *pszLink);
144int mkdir_msc(const char *path, mode_t mode);
145#define mkdir(path, mode) mkdir_msc(path, mode)
146#define mkfifo(path, mode) -1
147#define mknod(path, mode, devno) -1
148int mkstemp(char *temp);
149#define readlink(link, buf, size) -1
150#define reallocf(old, size) realloc(old, size)
151int rmdir_msc(const char *path);
152#define rmdir(path) rmdir_msc(path)
153intmax_t strtoimax(const char *nptr, char **endptr, int base);
154uintmax_t strtoumax(const char *nptr, char **endptr, int base);
155#define strtoll(a,b,c) strtoimax(a,b,c)
156#define strtoull(a,b,c) strtoumax(a,b,c)
157int asprintf(char **strp, const char *fmt, ...);
158int vasprintf(char **strp, const char *fmt, va_list ap);
159#if _MSC_VER < 1400
160int snprintf(char *buf, size_t size, const char *fmt, ...);
161#else
162#define snprintf _snprintf
163#endif
164int symlink(const char *pszDst, const char *pszLink);
165int utimes(const char *pszPath, const struct timeval *paTimes);
166int writev(int fd, const struct iovec *vector, int count);
167
168#endif /* _MSC_VER */
169#endif
170
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette