VirtualBox

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

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

GPLv2 -> GPLv3. See Ticket #44 for clarifications. Fixes #44.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
Line 
1/* $Id: mscfakes.h 2019 2008-11-02 00:21:05Z 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#define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
51#define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
52#define S_ISLNK(m) 0
53#define S_IRWXU (_S_IREAD | _S_IWRITE | _S_IEXEC)
54#define S_IXUSR _S_IEXEC
55#define S_IWUSR _S_IWRITE
56#define S_IRUSR _S_IREAD
57#define S_IRWXG 0000070
58#define S_IRGRP 0000040
59#define S_IWGRP 0000020
60#define S_IXGRP 0000010
61#define S_IRWXO 0000007
62#define S_IROTH 0000004
63#define S_IWOTH 0000002
64#define S_IXOTH 0000001
65#define S_ISUID 0004000
66#define S_ISGID 0002000
67#define ALLPERMS 0000777
68
69#define PATH_MAX _MAX_PATH
70#define MAXPATHLEN _MAX_PATH
71
72#define EX_OK 0
73#define EX_OSERR 1
74#define EX_NOUSER 1
75#define EX_USAGE 1
76
77#define STDIN_FILENO 0
78#define STDOUT_FILENO 1
79#define STDERR_FILENO 2
80
81#define F_OK 0
82#define X_OK 1
83#define W_OK 2
84#define R_OK 4
85
86#define EFTYPE EINVAL
87
88#define _PATH_DEVNULL "/dev/null"
89
90#define MAX(a,b) ((a) >= (b) ? (a) : (b))
91
92typedef int mode_t;
93typedef unsigned short nlink_t;
94typedef unsigned short uid_t;
95typedef unsigned short gid_t;
96typedef long ssize_t;
97typedef unsigned long u_long;
98typedef unsigned int u_int;
99typedef unsigned short u_short;
100
101#ifndef timerisset
102struct timeval
103{
104 long tv_sec;
105 long tv_usec;
106};
107#endif
108
109struct iovec
110{
111 char *iov_base;
112 size_t iov_len;
113};
114
115typedef __int64 intmax_t;
116typedef unsigned __int64 uintmax_t;
117
118#define chown(path, uid, gid) 0 /** @todo implement fchmod! */
119char *dirname(char *path);
120#define fsync(fd) 0
121#define fchown(fd,uid,gid) 0
122#define fchmod(fd, mode) 0 /** @todo implement fchmod! */
123#define geteuid() 0
124#define getegid() 0
125#define lstat(path, s) stat(path, s)
126int lchmod(const char *path, mode_t mode);
127int msc_chmod(const char *path, mode_t mode);
128#define chmod msc_chmod
129#define lchown(path, uid, gid) chown(path, uid, gid)
130#define lutimes(path, tvs) utimes(path, tvs)
131int link(const char *pszDst, const char *pszLink);
132int mkdir_msc(const char *path, mode_t mode);
133#define mkdir(path, mode) mkdir_msc(path, mode)
134#define mkfifo(path, mode) -1
135#define mknod(path, mode, devno) -1
136int mkstemp(char *temp);
137#define readlink(link, buf, size) -1
138#define reallocf(old, size) realloc(old, size)
139int rmdir_msc(const char *path);
140#define rmdir(path) rmdir_msc(path)
141intmax_t strtoimax(const char *nptr, char **endptr, int base);
142uintmax_t strtoumax(const char *nptr, char **endptr, int base);
143#define strtoll(a,b,c) strtoimax(a,b,c)
144#define strtoull(a,b,c) strtoumax(a,b,c)
145int asprintf(char **strp, const char *fmt, ...);
146int vasprintf(char **strp, const char *fmt, va_list ap);
147#if _MSC_VER < 1400
148int snprintf(char *buf, size_t size, const char *fmt, ...);
149#else
150#define snprintf _snprintf
151#endif
152size_t strlcpy(char *, const char *, size_t);
153int symlink(const char *pszDst, const char *pszLink);
154int utimes(const char *pszPath, const struct timeval *paTimes);
155int writev(int fd, const struct iovec *vector, int count);
156
157#endif /* _MSC_VER */
158#endif
159
Note: See TracBrowser for help on using the repository browser.

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