VirtualBox

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

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

wrap rmdir as well (the stupid trailing slash problem).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.7 KB
Line 
1/* $Id: mscfakes.h 936 2007-05-26 18:42:30Z bird $ */
2/** @file
3 *
4 * Unix fakes for MSC.
5 *
6 * Copyright (c) 2005-2007 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#include <malloc.h>
35#undef setmode
36#include "getopt.h"
37
38#define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
39#define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
40#define S_ISLNK(m) 0
41#define S_IRWXU (_S_IREAD | _S_IWRITE | _S_IEXEC)
42#define S_IXUSR _S_IEXEC
43#define S_IWUSR _S_IWRITE
44#define S_IRUSR _S_IREAD
45#define S_IRWXG 0000070
46#define S_IRGRP 0000040
47#define S_IWGRP 0000020
48#define S_IXGRP 0000010
49#define S_IRWXO 0000007
50#define S_IROTH 0000004
51#define S_IWOTH 0000002
52#define S_IXOTH 0000001
53#define S_ISUID 0004000
54#define S_ISGID 0002000
55#define ALLPERMS 0000777
56
57#define PATH_MAX _MAX_PATH
58#define MAXPATHLEN _MAX_PATH
59
60#define EX_OK 0
61#define EX_OSERR 1
62#define EX_NOUSER 1
63#define EX_USAGE 1
64
65#define STDIN_FILENO 0
66#define STDOUT_FILENO 1
67#define STDERR_FILENO 2
68
69#define F_OK 0
70#define X_OK 1
71#define W_OK 2
72#define R_OK 4
73
74#define EFTYPE EINVAL
75
76#define _PATH_DEVNULL "/dev/null"
77
78#define MAX(a,b) ((a) >= (b) ? (a) : (b))
79
80typedef int mode_t;
81typedef unsigned short nlink_t;
82typedef unsigned short uid_t;
83typedef unsigned short gid_t;
84typedef long ssize_t;
85typedef unsigned long u_long;
86typedef unsigned int u_int;
87typedef unsigned short u_short;
88
89#ifndef timerisset
90struct timeval
91{
92 long tv_sec;
93 long tv_usec;
94};
95#endif
96
97struct iovec
98{
99 char *iov_base;
100 size_t iov_len;
101};
102
103typedef __int64 intmax_t;
104typedef unsigned __int64 uintmax_t;
105
106#define chown(path, uid, gid) 0 /** @todo implement fchmod! */
107char *dirname(char *path);
108#define fsync(fd) 0
109#define fchown(fd,uid,gid) 0
110#define fchmod(fd, mode) 0 /** @todo implement fchmod! */
111#define geteuid() 0
112#define lstat(path, s) stat(path, s)
113#define lchmod(path, mod) chmod(path, mod)
114#define lchown(path, uid, gid) chown(path, uid, gid)
115#define lutimes(path, tvs) utimes(path, tvs)
116int link(const char *pszDst, const char *pszLink);
117int mkdir_msc(const char *path, mode_t mode);
118#define mkdir(path, mode) mkdir_msc(path, mode)
119#define mkfifo(path, mode) -1
120#define mknod(path, mode, devno) -1
121int mkstemp(char *temp);
122#define readlink(link, buf, size) -1
123#define reallocf(old, size) realloc(old, size)
124int rmdir_msc(const char *path);
125#define rmdir(path) rmdir_msc(path)
126intmax_t strtoimax(const char *nptr, char **endptr, int base);
127uintmax_t strtoumax(const char *nptr, char **endptr, int base);
128int asprintf(char **strp, const char *fmt, ...);
129int vasprintf(char **strp, const char *fmt, va_list ap);
130#if _MSC_VER < 1400
131int snprintf(char *buf, size_t size, const char *fmt, ...);
132#else
133#define snprintf _snprintf
134#endif
135size_t strlcpy(char *, const char *, size_t);
136int symlink(const char *pszDst, const char *pszLink);
137int utimes(const char *pszPath, const struct timeval *paTimes);
138int writev(int fd, const struct iovec *vector, int count);
139
140#endif /* _MSC_VER */
141#endif
142
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