VirtualBox

source: kBuild/trunk/src/gmake/kmkbuiltin/mscfakes.h@ 775

Last change on this file since 775 was 775, checked in by bird, 18 years ago

ported printf to MSC.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
1/* $Id: mscfakes.h 775 2007-01-19 05:57:42Z bird $ */
2/** @file
3 *
4 * Unix fakes for MSC.
5 *
6 * Copyright (c) 2005 knut st. osmundsen <[email protected]>
7 *
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with This program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
25#ifndef __mscfakes_h__
26#define __mscfakes_h__
27#ifdef _MSC_VER
28
29#define setmode setmode_msc
30#include <io.h>
31#include <direct.h>
32#include <time.h>
33#include <stdarg.h>
34#undef setmode
35#include "getopt.h"
36
37#define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
38#define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
39#define S_ISLNK(m) 0
40#define S_IRWXU (_S_IREAD | _S_IWRITE | _S_IEXEC)
41#define S_IXUSR _S_IEXEC
42#define S_IWUSR _S_IWRITE
43#define S_IRUSR _S_IREAD
44#define S_IRWXG 0000070
45#define S_IRGRP 0000040
46#define S_IWGRP 0000020
47#define S_IXGRP 0000010
48#define S_IRWXO 0000007
49#define S_IROTH 0000004
50#define S_IWOTH 0000002
51#define S_IXOTH 0000001
52#define S_ISUID 0004000
53#define S_ISGID 0002000
54#define ALLPERMS 0000777
55
56#define PATH_MAX _MAX_PATH
57#define MAXPATHLEN _MAX_PATH
58
59#define EX_OK 0
60#define EX_OSERR 1
61#define EX_NOUSER 1
62#define EX_USAGE 1
63
64#define STDIN_FILENO 0
65#define STDOUT_FILENO 1
66#define STDERR_FILENO 2
67
68#define F_OK 0
69#define X_OK 1
70#define W_OK 2
71#define R_OK 4
72
73#define EFTYPE EINVAL
74
75#define _PATH_DEVNULL "/dev/null"
76
77#define MAX(a,b) ((a) >= (b) ? (a) : (b))
78
79typedef int mode_t;
80typedef unsigned short nlink_t;
81typedef unsigned short uid_t;
82typedef unsigned short gid_t;
83typedef long ssize_t;
84typedef unsigned long u_long;
85typedef unsigned int u_int;
86typedef unsigned short u_short;
87
88#ifndef timerisset
89struct timeval
90{
91 long tv_sec;
92 long tv_usec;
93};
94#endif
95
96struct iovec
97{
98 char *iov_base;
99 size_t iov_len;
100};
101
102typedef __int64 intmax_t;
103typedef unsigned __int64 uintmax_t;
104
105#define chown(path, uid, gid) 0 /** @todo implement fchmod! */
106char *dirname(char *path);
107#define fsync(fd) 0
108#define fchown(fd,uid,gid) 0
109#define fchmod(fd, mode) 0 /** @todo implement fchmod! */
110#define geteuid() 0
111#define lstat(path, s) stat(path, s)
112#define lchmod(path, mod) chmod(path, mod)
113#define lchown(path, uid, gid) chown(path, uid, gid)
114#define lutimes(path, tvs) utimes(path, tvs)
115int link(const char *pszDst, const char *pszLink);
116int mkdir_msc(const char *path, mode_t mode);
117#define mkdir(path, mode) mkdir_msc(path, mode)
118#define mkfifo(path, mode) -1
119#define mknod(path, mode, devno) -1
120int mkstemp(char *temp);
121#define readlink(link, buf, size) -1
122#define reallocf(old, size) realloc(old, size)
123intmax_t strtoimax(const char *nptr, char **endptr, int base);
124int asprintf(char **strp, const char *fmt, ...);
125int vasprintf(char **strp, const char *fmt, va_list ap);
126#if _MSC_VER < 1400
127int snprintf(char *buf, size_t size, const char *fmt, ...);
128#else
129#define snprintf _snprintf
130#endif
131size_t strlcpy(char *, const char *, size_t);
132int symlink(const char *pszDst, const char *pszLink);
133int utimes(const char *pszPath, const struct timeval *paTimes);
134int writev(int fd, const struct iovec *vector, int count);
135
136#endif /* _MSC_VER */
137#endif
138
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