standalone-ruby 1.4.2 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +36 -22
- data/lib/data/{tcc → c_compilers/tcc}/include/_mingw.h +54 -54
- data/lib/data/{tcc → c_compilers/tcc}/include/assert.h +71 -71
- data/lib/data/{tcc → c_compilers/tcc}/include/conio.h +159 -159
- data/lib/data/{tcc → c_compilers/tcc}/include/ctype.h +232 -232
- data/lib/data/{tcc → c_compilers/tcc}/include/dir.h +26 -26
- data/lib/data/{tcc → c_compilers/tcc}/include/direct.h +95 -95
- data/lib/data/{tcc → c_compilers/tcc}/include/dirent.h +96 -96
- data/lib/data/{tcc → c_compilers/tcc}/include/dos.h +110 -110
- data/lib/data/{tcc → c_compilers/tcc}/include/errno.h +117 -117
- data/lib/data/{tcc → c_compilers/tcc}/include/excpt.h +20 -20
- data/lib/data/{tcc → c_compilers/tcc}/include/fcntl.h +135 -135
- data/lib/data/{tcc → c_compilers/tcc}/include/fenv.h +85 -85
- data/lib/data/{tcc → c_compilers/tcc}/include/float.h +224 -224
- data/lib/data/{tcc → c_compilers/tcc}/include/inttypes.h +275 -275
- data/lib/data/{tcc → c_compilers/tcc}/include/io.h +296 -296
- data/lib/data/{tcc → c_compilers/tcc}/include/limits.h +115 -115
- data/lib/data/{tcc → c_compilers/tcc}/include/locale.h +100 -100
- data/lib/data/{tcc → c_compilers/tcc}/include/malloc.h +87 -87
- data/lib/data/{tcc → c_compilers/tcc}/include/math.h +438 -438
- data/lib/data/{tcc → c_compilers/tcc}/include/mem.h +8 -8
- data/lib/data/{tcc → c_compilers/tcc}/include/memory.h +9 -9
- data/lib/data/{tcc → c_compilers/tcc}/include/process.h +158 -158
- data/lib/data/{tcc → c_compilers/tcc}/include/setjmp.h +72 -72
- data/lib/data/{tcc → c_compilers/tcc}/include/share.h +44 -44
- data/lib/data/{tcc → c_compilers/tcc}/include/signal.h +111 -111
- data/lib/data/{tcc → c_compilers/tcc}/include/stdarg.h +16 -16
- data/lib/data/{tcc → c_compilers/tcc}/include/stdbool.h +10 -10
- data/lib/data/{tcc → c_compilers/tcc}/include/stddef.h +26 -26
- data/lib/data/{tcc → c_compilers/tcc}/include/stdint.h +184 -184
- data/lib/data/{tcc → c_compilers/tcc}/include/stdio.h +413 -413
- data/lib/data/{tcc → c_compilers/tcc}/include/stdlib.h +482 -482
- data/lib/data/{tcc → c_compilers/tcc}/include/string.h +206 -206
- data/lib/data/{tcc → c_compilers/tcc}/include/sys/fcntl.h +8 -8
- data/lib/data/{tcc → c_compilers/tcc}/include/sys/file.h +9 -9
- data/lib/data/{tcc → c_compilers/tcc}/include/sys/locking.h +52 -52
- data/lib/data/{tcc → c_compilers/tcc}/include/sys/stat.h +190 -190
- data/lib/data/{tcc → c_compilers/tcc}/include/sys/time.h +3 -3
- data/lib/data/{tcc → c_compilers/tcc}/include/sys/timeb.h +82 -82
- data/lib/data/{tcc → c_compilers/tcc}/include/sys/types.h +118 -118
- data/lib/data/{tcc/include → c_compilers/tcc/include/sys}/unistd.h +9 -10
- data/lib/data/{tcc → c_compilers/tcc}/include/sys/utime.h +89 -89
- data/lib/data/{tcc → c_compilers/tcc}/include/tchar.h +367 -367
- data/lib/data/{tcc → c_compilers/tcc}/include/time.h +219 -219
- data/lib/data/{tcc/include/sys → c_compilers/tcc/include}/unistd.h +10 -9
- data/lib/data/{tcc → c_compilers/tcc}/include/values.h +4 -4
- data/lib/data/{tcc → c_compilers/tcc}/include/varargs.h +11 -11
- data/lib/data/{tcc → c_compilers/tcc}/include/wchar.h +318 -318
- data/lib/data/{tcc → c_compilers/tcc}/include/wctype.h +127 -127
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/basetsd.h +119 -119
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/basetyps.h +144 -144
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/winbase.h +1852 -1852
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/wincon.h +207 -207
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/windef.h +240 -240
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/windows.h +176 -176
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/winerror.h +1054 -1054
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/wingdi.h +2843 -2843
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/winnetwk.h +346 -346
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/winnls.h +651 -651
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/winnt.h +2667 -2667
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/winreg.h +159 -159
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/winsvc.h +309 -309
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/winuser.h +3472 -3472
- data/lib/data/{tcc → c_compilers/tcc}/include/winapi/winver.h +133 -133
- data/lib/data/{tcc → c_compilers/tcc}/lib/gdi32.def +337 -337
- data/lib/data/{tcc → c_compilers/tcc}/lib/kernel32.def +763 -763
- data/lib/data/{tcc → c_compilers/tcc}/lib/msvcrt.def +782 -782
- data/lib/data/{tcc → c_compilers/tcc}/lib/user32.def +654 -654
- data/lib/data/{exe_template → exe_templates}/launcher_stub.c +2 -2
- data/lib/data/exe_templates/launcher_stub.cpp +31 -0
- data/lib/data/{vbs → launcher_templates/vbs}/default_vbs.txt +7 -7
- data/lib/data/{vbs → launcher_templates/vbs}/vbs_gui.txt +8 -8
- data/lib/data/resource_files/default.rc +17 -0
- data/lib/{utils/displayer.rb → displayer.rb} +6 -6
- data/lib/exe_packer.rb +68 -0
- data/lib/{utils/launcher.rb → launcher.rb} +18 -24
- data/lib/launcher_handler.rb +41 -0
- data/lib/parameter_parser.rb +201 -0
- data/lib/{utils/ruby_copy.rb → ruby_copy.rb} +0 -6
- data/lib/sfx_generator.rb +9 -0
- data/lib/standalone_ruby.rb +1 -1
- data/lib/version/version.rb +1 -1
- metadata +84 -87
- data/lib/data/bat-cmd/default_bat_cmd.txt +0 -9
- data/lib/data/exe_template/launcher_stub.cpp +0 -9
- data/lib/data/tcc/tiny_impdef.exe +0 -0
- data/lib/data/tcc/tiny_libmaker.exe +0 -0
- data/lib/utils/config_generator.rb +0 -5
- data/lib/utils/exe_packer.rb +0 -72
- data/lib/utils/launcher_handler.rb +0 -111
- data/lib/utils/logger_helper.rb +0 -24
- data/lib/utils/parameter_parser.rb +0 -211
- /data/lib/data/{tcc → c_compilers/tcc}/lib/libtcc1.a +0 -0
- /data/lib/data/{tcc → c_compilers/tcc}/tcc.exe +0 -0
@@ -1,117 +1,117 @@
|
|
1
|
-
/*
|
2
|
-
* errno.h
|
3
|
-
*
|
4
|
-
* Error numbers and access to error reporting.
|
5
|
-
*
|
6
|
-
* This file is part of the Mingw32 package.
|
7
|
-
*
|
8
|
-
* Contributors:
|
9
|
-
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
|
10
|
-
*
|
11
|
-
* THIS SOFTWARE IS NOT COPYRIGHTED
|
12
|
-
*
|
13
|
-
* This source code is offered for use in the public domain. You may
|
14
|
-
* use, modify or distribute it freely.
|
15
|
-
*
|
16
|
-
* This code is distributed in the hope that it will be useful but
|
17
|
-
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
|
18
|
-
* DISCLAIMED. This includes but is not limited to warranties of
|
19
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
20
|
-
*
|
21
|
-
* $Revision: 1.2 $
|
22
|
-
* $Author: bellard $
|
23
|
-
* $Date: 2005/04/17 13:14:29 $
|
24
|
-
*
|
25
|
-
*/
|
26
|
-
|
27
|
-
#ifndef _ERRNO_H_
|
28
|
-
#define _ERRNO_H_
|
29
|
-
|
30
|
-
/* All the headers include this file. */
|
31
|
-
#include <_mingw.h>
|
32
|
-
|
33
|
-
/*
|
34
|
-
* Error numbers.
|
35
|
-
* TODO: Can't be sure of some of these assignments, I guessed from the
|
36
|
-
* names given by strerror and the defines in the Cygnus errno.h. A lot
|
37
|
-
* of the names from the Cygnus errno.h are not represented, and a few
|
38
|
-
* of the descriptions returned by strerror do not obviously match
|
39
|
-
* their error naming.
|
40
|
-
*/
|
41
|
-
#define EPERM 1 /* Operation not permitted */
|
42
|
-
#define ENOFILE 2 /* No such file or directory */
|
43
|
-
#define ENOENT 2
|
44
|
-
#define ESRCH 3 /* No such process */
|
45
|
-
#define EINTR 4 /* Interrupted function call */
|
46
|
-
#define EIO 5 /* Input/output error */
|
47
|
-
#define ENXIO 6 /* No such device or address */
|
48
|
-
#define E2BIG 7 /* Arg list too long */
|
49
|
-
#define ENOEXEC 8 /* Exec format error */
|
50
|
-
#define EBADF 9 /* Bad file descriptor */
|
51
|
-
#define ECHILD 10 /* No child processes */
|
52
|
-
#define EAGAIN 11 /* Resource temporarily unavailable */
|
53
|
-
#define ENOMEM 12 /* Not enough space */
|
54
|
-
#define EACCES 13 /* Permission denied */
|
55
|
-
#define EFAULT 14 /* Bad address */
|
56
|
-
/* 15 - Unknown Error */
|
57
|
-
#define EBUSY 16 /* strerror reports "Resource device" */
|
58
|
-
#define EEXIST 17 /* File exists */
|
59
|
-
#define EXDEV 18 /* Improper link (cross-device link?) */
|
60
|
-
#define ENODEV 19 /* No such device */
|
61
|
-
#define ENOTDIR 20 /* Not a directory */
|
62
|
-
#define EISDIR 21 /* Is a directory */
|
63
|
-
#define EINVAL 22 /* Invalid argument */
|
64
|
-
#define ENFILE 23 /* Too many open files in system */
|
65
|
-
#define EMFILE 24 /* Too many open files */
|
66
|
-
#define ENOTTY 25 /* Inappropriate I/O control operation */
|
67
|
-
/* 26 - Unknown Error */
|
68
|
-
#define EFBIG 27 /* File too large */
|
69
|
-
#define ENOSPC 28 /* No space left on device */
|
70
|
-
#define ESPIPE 29 /* Invalid seek (seek on a pipe?) */
|
71
|
-
#define EROFS 30 /* Read-only file system */
|
72
|
-
#define EMLINK 31 /* Too many links */
|
73
|
-
#define EPIPE 32 /* Broken pipe */
|
74
|
-
#define EDOM 33 /* Domain error (math functions) */
|
75
|
-
#define ERANGE 34 /* Result too large (possibly too small) */
|
76
|
-
/* 35 - Unknown Error */
|
77
|
-
#define EDEADLOCK 36 /* Resource deadlock avoided (non-Cyg) */
|
78
|
-
#define EDEADLK 36
|
79
|
-
/* 37 - Unknown Error */
|
80
|
-
#define ENAMETOOLONG 38 /* Filename too long (91 in Cyg?) */
|
81
|
-
#define ENOLCK 39 /* No locks available (46 in Cyg?) */
|
82
|
-
#define ENOSYS 40 /* Function not implemented (88 in Cyg?) */
|
83
|
-
#define ENOTEMPTY 41 /* Directory not empty (90 in Cyg?) */
|
84
|
-
#define EILSEQ 42 /* Illegal byte sequence */
|
85
|
-
|
86
|
-
/*
|
87
|
-
* NOTE: ENAMETOOLONG and ENOTEMPTY conflict with definitions in the
|
88
|
-
* sockets.h header provided with windows32api-0.1.2.
|
89
|
-
* You should go and put an #if 0 ... #endif around the whole block
|
90
|
-
* of errors (look at the comment above them).
|
91
|
-
*/
|
92
|
-
|
93
|
-
#ifndef RC_INVOKED
|
94
|
-
|
95
|
-
#ifdef __cplusplus
|
96
|
-
extern "C" {
|
97
|
-
#endif
|
98
|
-
|
99
|
-
/*
|
100
|
-
* Definitions of errno. For _doserrno, sys_nerr and * sys_errlist, see
|
101
|
-
* stdlib.h.
|
102
|
-
*/
|
103
|
-
#ifdef _UWIN
|
104
|
-
#undef errno
|
105
|
-
extern int errno;
|
106
|
-
#else
|
107
|
-
int* _errno(void);
|
108
|
-
#define errno (*_errno())
|
109
|
-
#endif
|
110
|
-
|
111
|
-
#ifdef __cplusplus
|
112
|
-
}
|
113
|
-
#endif
|
114
|
-
|
115
|
-
#endif /* Not RC_INVOKED */
|
116
|
-
|
117
|
-
#endif /* Not _ERRNO_H_ */
|
1
|
+
/*
|
2
|
+
* errno.h
|
3
|
+
*
|
4
|
+
* Error numbers and access to error reporting.
|
5
|
+
*
|
6
|
+
* This file is part of the Mingw32 package.
|
7
|
+
*
|
8
|
+
* Contributors:
|
9
|
+
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
|
10
|
+
*
|
11
|
+
* THIS SOFTWARE IS NOT COPYRIGHTED
|
12
|
+
*
|
13
|
+
* This source code is offered for use in the public domain. You may
|
14
|
+
* use, modify or distribute it freely.
|
15
|
+
*
|
16
|
+
* This code is distributed in the hope that it will be useful but
|
17
|
+
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
|
18
|
+
* DISCLAIMED. This includes but is not limited to warranties of
|
19
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
20
|
+
*
|
21
|
+
* $Revision: 1.2 $
|
22
|
+
* $Author: bellard $
|
23
|
+
* $Date: 2005/04/17 13:14:29 $
|
24
|
+
*
|
25
|
+
*/
|
26
|
+
|
27
|
+
#ifndef _ERRNO_H_
|
28
|
+
#define _ERRNO_H_
|
29
|
+
|
30
|
+
/* All the headers include this file. */
|
31
|
+
#include <_mingw.h>
|
32
|
+
|
33
|
+
/*
|
34
|
+
* Error numbers.
|
35
|
+
* TODO: Can't be sure of some of these assignments, I guessed from the
|
36
|
+
* names given by strerror and the defines in the Cygnus errno.h. A lot
|
37
|
+
* of the names from the Cygnus errno.h are not represented, and a few
|
38
|
+
* of the descriptions returned by strerror do not obviously match
|
39
|
+
* their error naming.
|
40
|
+
*/
|
41
|
+
#define EPERM 1 /* Operation not permitted */
|
42
|
+
#define ENOFILE 2 /* No such file or directory */
|
43
|
+
#define ENOENT 2
|
44
|
+
#define ESRCH 3 /* No such process */
|
45
|
+
#define EINTR 4 /* Interrupted function call */
|
46
|
+
#define EIO 5 /* Input/output error */
|
47
|
+
#define ENXIO 6 /* No such device or address */
|
48
|
+
#define E2BIG 7 /* Arg list too long */
|
49
|
+
#define ENOEXEC 8 /* Exec format error */
|
50
|
+
#define EBADF 9 /* Bad file descriptor */
|
51
|
+
#define ECHILD 10 /* No child processes */
|
52
|
+
#define EAGAIN 11 /* Resource temporarily unavailable */
|
53
|
+
#define ENOMEM 12 /* Not enough space */
|
54
|
+
#define EACCES 13 /* Permission denied */
|
55
|
+
#define EFAULT 14 /* Bad address */
|
56
|
+
/* 15 - Unknown Error */
|
57
|
+
#define EBUSY 16 /* strerror reports "Resource device" */
|
58
|
+
#define EEXIST 17 /* File exists */
|
59
|
+
#define EXDEV 18 /* Improper link (cross-device link?) */
|
60
|
+
#define ENODEV 19 /* No such device */
|
61
|
+
#define ENOTDIR 20 /* Not a directory */
|
62
|
+
#define EISDIR 21 /* Is a directory */
|
63
|
+
#define EINVAL 22 /* Invalid argument */
|
64
|
+
#define ENFILE 23 /* Too many open files in system */
|
65
|
+
#define EMFILE 24 /* Too many open files */
|
66
|
+
#define ENOTTY 25 /* Inappropriate I/O control operation */
|
67
|
+
/* 26 - Unknown Error */
|
68
|
+
#define EFBIG 27 /* File too large */
|
69
|
+
#define ENOSPC 28 /* No space left on device */
|
70
|
+
#define ESPIPE 29 /* Invalid seek (seek on a pipe?) */
|
71
|
+
#define EROFS 30 /* Read-only file system */
|
72
|
+
#define EMLINK 31 /* Too many links */
|
73
|
+
#define EPIPE 32 /* Broken pipe */
|
74
|
+
#define EDOM 33 /* Domain error (math functions) */
|
75
|
+
#define ERANGE 34 /* Result too large (possibly too small) */
|
76
|
+
/* 35 - Unknown Error */
|
77
|
+
#define EDEADLOCK 36 /* Resource deadlock avoided (non-Cyg) */
|
78
|
+
#define EDEADLK 36
|
79
|
+
/* 37 - Unknown Error */
|
80
|
+
#define ENAMETOOLONG 38 /* Filename too long (91 in Cyg?) */
|
81
|
+
#define ENOLCK 39 /* No locks available (46 in Cyg?) */
|
82
|
+
#define ENOSYS 40 /* Function not implemented (88 in Cyg?) */
|
83
|
+
#define ENOTEMPTY 41 /* Directory not empty (90 in Cyg?) */
|
84
|
+
#define EILSEQ 42 /* Illegal byte sequence */
|
85
|
+
|
86
|
+
/*
|
87
|
+
* NOTE: ENAMETOOLONG and ENOTEMPTY conflict with definitions in the
|
88
|
+
* sockets.h header provided with windows32api-0.1.2.
|
89
|
+
* You should go and put an #if 0 ... #endif around the whole block
|
90
|
+
* of errors (look at the comment above them).
|
91
|
+
*/
|
92
|
+
|
93
|
+
#ifndef RC_INVOKED
|
94
|
+
|
95
|
+
#ifdef __cplusplus
|
96
|
+
extern "C" {
|
97
|
+
#endif
|
98
|
+
|
99
|
+
/*
|
100
|
+
* Definitions of errno. For _doserrno, sys_nerr and * sys_errlist, see
|
101
|
+
* stdlib.h.
|
102
|
+
*/
|
103
|
+
#ifdef _UWIN
|
104
|
+
#undef errno
|
105
|
+
extern int errno;
|
106
|
+
#else
|
107
|
+
int* _errno(void);
|
108
|
+
#define errno (*_errno())
|
109
|
+
#endif
|
110
|
+
|
111
|
+
#ifdef __cplusplus
|
112
|
+
}
|
113
|
+
#endif
|
114
|
+
|
115
|
+
#endif /* Not RC_INVOKED */
|
116
|
+
|
117
|
+
#endif /* Not _ERRNO_H_ */
|
@@ -1,20 +1,20 @@
|
|
1
|
-
#ifndef _EXCPT_H
|
2
|
-
#define _EXCPT_H
|
3
|
-
#if __GNUC__ >=3
|
4
|
-
#pragma GCC system_header
|
5
|
-
#endif
|
6
|
-
|
7
|
-
/* FIXME: This will make some code compile. The programs will most
|
8
|
-
likely crash when an exception is raised, but at least they will
|
9
|
-
compile. */
|
10
|
-
#ifdef __GNUC__
|
11
|
-
#define __try
|
12
|
-
#define __except(x) if (0) /* don't execute handler */
|
13
|
-
#define __finally
|
14
|
-
|
15
|
-
#define _try __try
|
16
|
-
#define _except __except
|
17
|
-
#define _finally __finally
|
18
|
-
#endif
|
19
|
-
|
20
|
-
#endif
|
1
|
+
#ifndef _EXCPT_H
|
2
|
+
#define _EXCPT_H
|
3
|
+
#if __GNUC__ >=3
|
4
|
+
#pragma GCC system_header
|
5
|
+
#endif
|
6
|
+
|
7
|
+
/* FIXME: This will make some code compile. The programs will most
|
8
|
+
likely crash when an exception is raised, but at least they will
|
9
|
+
compile. */
|
10
|
+
#ifdef __GNUC__
|
11
|
+
#define __try
|
12
|
+
#define __except(x) if (0) /* don't execute handler */
|
13
|
+
#define __finally
|
14
|
+
|
15
|
+
#define _try __try
|
16
|
+
#define _except __except
|
17
|
+
#define _finally __finally
|
18
|
+
#endif
|
19
|
+
|
20
|
+
#endif
|
@@ -1,135 +1,135 @@
|
|
1
|
-
/*
|
2
|
-
* fcntl.h
|
3
|
-
*
|
4
|
-
* Access constants for _open. Note that the permissions constants are
|
5
|
-
* in sys/stat.h (ick).
|
6
|
-
*
|
7
|
-
* This code is part of the Mingw32 package.
|
8
|
-
*
|
9
|
-
* Contributors:
|
10
|
-
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
|
11
|
-
*
|
12
|
-
* THIS SOFTWARE IS NOT COPYRIGHTED
|
13
|
-
*
|
14
|
-
* This source code is offered for use in the public domain. You may
|
15
|
-
* use, modify or distribute it freely.
|
16
|
-
*
|
17
|
-
* This code is distributed in the hope that it will be useful but
|
18
|
-
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
|
19
|
-
* DISCLAIMED. This includes but is not limited to warranties of
|
20
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
21
|
-
*
|
22
|
-
* $Revision: 1.2 $
|
23
|
-
* $Author: bellard $
|
24
|
-
* $Date: 2005/04/17 13:14:29 $
|
25
|
-
*
|
26
|
-
*/
|
27
|
-
|
28
|
-
#ifndef __STRICT_ANSI__
|
29
|
-
|
30
|
-
#ifndef _FCNTL_H_
|
31
|
-
#define _FCNTL_H_
|
32
|
-
|
33
|
-
/* All the headers include this file. */
|
34
|
-
#include <_mingw.h>
|
35
|
-
|
36
|
-
/*
|
37
|
-
* It appears that fcntl.h should include io.h for compatibility...
|
38
|
-
*/
|
39
|
-
#include <io.h>
|
40
|
-
|
41
|
-
/* Specifiy one of these flags to define the access mode. */
|
42
|
-
#define _O_RDONLY 0
|
43
|
-
#define _O_WRONLY 1
|
44
|
-
#define _O_RDWR 2
|
45
|
-
|
46
|
-
/* Mask for access mode bits in the _open flags. */
|
47
|
-
#define _O_ACCMODE (_O_RDONLY|_O_WRONLY|_O_RDWR)
|
48
|
-
|
49
|
-
#define _O_APPEND 0x0008 /* Writes will add to the end of the file. */
|
50
|
-
|
51
|
-
#define _O_RANDOM 0x0010
|
52
|
-
#define _O_SEQUENTIAL 0x0020
|
53
|
-
#define _O_TEMPORARY 0x0040 /* Make the file dissappear after closing.
|
54
|
-
* WARNING: Even if not created by _open! */
|
55
|
-
#define _O_NOINHERIT 0x0080
|
56
|
-
|
57
|
-
#define _O_CREAT 0x0100 /* Create the file if it does not exist. */
|
58
|
-
#define _O_TRUNC 0x0200 /* Truncate the file if it does exist. */
|
59
|
-
#define _O_EXCL 0x0400 /* Open only if the file does not exist. */
|
60
|
-
|
61
|
-
/* NOTE: Text is the default even if the given _O_TEXT bit is not on. */
|
62
|
-
#define _O_TEXT 0x4000 /* CR-LF in file becomes LF in memory. */
|
63
|
-
#define _O_BINARY 0x8000 /* Input and output is not translated. */
|
64
|
-
#define _O_RAW _O_BINARY
|
65
|
-
|
66
|
-
#ifndef _NO_OLDNAMES
|
67
|
-
|
68
|
-
/* POSIX/Non-ANSI names for increased portability */
|
69
|
-
#define O_RDONLY _O_RDONLY
|
70
|
-
#define O_WRONLY _O_WRONLY
|
71
|
-
#define O_RDWR _O_RDWR
|
72
|
-
#define O_ACCMODE _O_ACCMODE
|
73
|
-
#define O_APPEND _O_APPEND
|
74
|
-
#define O_CREAT _O_CREAT
|
75
|
-
#define O_TRUNC _O_TRUNC
|
76
|
-
#define O_EXCL _O_EXCL
|
77
|
-
#define O_TEXT _O_TEXT
|
78
|
-
#define O_BINARY _O_BINARY
|
79
|
-
#define O_TEMPORARY _O_TEMPORARY
|
80
|
-
#define O_NOINHERIT _O_NOINHERIT
|
81
|
-
#define O_SEQENTIAL _O_SEQUENTIAL
|
82
|
-
#define O_RANDOM _O_RANDOM
|
83
|
-
|
84
|
-
#endif /* Not _NO_OLDNAMES */
|
85
|
-
|
86
|
-
|
87
|
-
#ifndef RC_INVOKED
|
88
|
-
|
89
|
-
/*
|
90
|
-
* This variable determines the default file mode.
|
91
|
-
* TODO: Which flags work?
|
92
|
-
*/
|
93
|
-
#ifndef __DECLSPEC_SUPPORTED
|
94
|
-
|
95
|
-
#ifdef __MSVCRT__
|
96
|
-
extern unsigned int* __imp__fmode;
|
97
|
-
#define _fmode (*__imp__fmode)
|
98
|
-
#else
|
99
|
-
/* CRTDLL */
|
100
|
-
extern unsigned int* __imp__fmode_dll;
|
101
|
-
#define _fmode (*__imp__fmode_dll)
|
102
|
-
#endif
|
103
|
-
|
104
|
-
#else /* __DECLSPEC_SUPPORTED */
|
105
|
-
|
106
|
-
#ifdef __MSVCRT__
|
107
|
-
__MINGW_IMPORT unsigned int _fmode;
|
108
|
-
#else /* ! __MSVCRT__ */
|
109
|
-
__MINGW_IMPORT unsigned int _fmode_dll;
|
110
|
-
#define _fmode _fmode_dll
|
111
|
-
#endif /* ! __MSVCRT__ */
|
112
|
-
|
113
|
-
#endif /* __DECLSPEC_SUPPORTED */
|
114
|
-
|
115
|
-
|
116
|
-
#ifdef __cplusplus
|
117
|
-
extern "C" {
|
118
|
-
#endif
|
119
|
-
|
120
|
-
int _setmode (int, int);
|
121
|
-
|
122
|
-
#ifndef _NO_OLDNAMES
|
123
|
-
int setmode (int, int);
|
124
|
-
#endif /* Not _NO_OLDNAMES */
|
125
|
-
|
126
|
-
#ifdef __cplusplus
|
127
|
-
}
|
128
|
-
#endif
|
129
|
-
|
130
|
-
#endif /* Not RC_INVOKED */
|
131
|
-
|
132
|
-
#endif /* Not _FCNTL_H_ */
|
133
|
-
|
134
|
-
#endif /* Not __STRICT_ANSI__ */
|
135
|
-
|
1
|
+
/*
|
2
|
+
* fcntl.h
|
3
|
+
*
|
4
|
+
* Access constants for _open. Note that the permissions constants are
|
5
|
+
* in sys/stat.h (ick).
|
6
|
+
*
|
7
|
+
* This code is part of the Mingw32 package.
|
8
|
+
*
|
9
|
+
* Contributors:
|
10
|
+
* Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
|
11
|
+
*
|
12
|
+
* THIS SOFTWARE IS NOT COPYRIGHTED
|
13
|
+
*
|
14
|
+
* This source code is offered for use in the public domain. You may
|
15
|
+
* use, modify or distribute it freely.
|
16
|
+
*
|
17
|
+
* This code is distributed in the hope that it will be useful but
|
18
|
+
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
|
19
|
+
* DISCLAIMED. This includes but is not limited to warranties of
|
20
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
21
|
+
*
|
22
|
+
* $Revision: 1.2 $
|
23
|
+
* $Author: bellard $
|
24
|
+
* $Date: 2005/04/17 13:14:29 $
|
25
|
+
*
|
26
|
+
*/
|
27
|
+
|
28
|
+
#ifndef __STRICT_ANSI__
|
29
|
+
|
30
|
+
#ifndef _FCNTL_H_
|
31
|
+
#define _FCNTL_H_
|
32
|
+
|
33
|
+
/* All the headers include this file. */
|
34
|
+
#include <_mingw.h>
|
35
|
+
|
36
|
+
/*
|
37
|
+
* It appears that fcntl.h should include io.h for compatibility...
|
38
|
+
*/
|
39
|
+
#include <io.h>
|
40
|
+
|
41
|
+
/* Specifiy one of these flags to define the access mode. */
|
42
|
+
#define _O_RDONLY 0
|
43
|
+
#define _O_WRONLY 1
|
44
|
+
#define _O_RDWR 2
|
45
|
+
|
46
|
+
/* Mask for access mode bits in the _open flags. */
|
47
|
+
#define _O_ACCMODE (_O_RDONLY|_O_WRONLY|_O_RDWR)
|
48
|
+
|
49
|
+
#define _O_APPEND 0x0008 /* Writes will add to the end of the file. */
|
50
|
+
|
51
|
+
#define _O_RANDOM 0x0010
|
52
|
+
#define _O_SEQUENTIAL 0x0020
|
53
|
+
#define _O_TEMPORARY 0x0040 /* Make the file dissappear after closing.
|
54
|
+
* WARNING: Even if not created by _open! */
|
55
|
+
#define _O_NOINHERIT 0x0080
|
56
|
+
|
57
|
+
#define _O_CREAT 0x0100 /* Create the file if it does not exist. */
|
58
|
+
#define _O_TRUNC 0x0200 /* Truncate the file if it does exist. */
|
59
|
+
#define _O_EXCL 0x0400 /* Open only if the file does not exist. */
|
60
|
+
|
61
|
+
/* NOTE: Text is the default even if the given _O_TEXT bit is not on. */
|
62
|
+
#define _O_TEXT 0x4000 /* CR-LF in file becomes LF in memory. */
|
63
|
+
#define _O_BINARY 0x8000 /* Input and output is not translated. */
|
64
|
+
#define _O_RAW _O_BINARY
|
65
|
+
|
66
|
+
#ifndef _NO_OLDNAMES
|
67
|
+
|
68
|
+
/* POSIX/Non-ANSI names for increased portability */
|
69
|
+
#define O_RDONLY _O_RDONLY
|
70
|
+
#define O_WRONLY _O_WRONLY
|
71
|
+
#define O_RDWR _O_RDWR
|
72
|
+
#define O_ACCMODE _O_ACCMODE
|
73
|
+
#define O_APPEND _O_APPEND
|
74
|
+
#define O_CREAT _O_CREAT
|
75
|
+
#define O_TRUNC _O_TRUNC
|
76
|
+
#define O_EXCL _O_EXCL
|
77
|
+
#define O_TEXT _O_TEXT
|
78
|
+
#define O_BINARY _O_BINARY
|
79
|
+
#define O_TEMPORARY _O_TEMPORARY
|
80
|
+
#define O_NOINHERIT _O_NOINHERIT
|
81
|
+
#define O_SEQENTIAL _O_SEQUENTIAL
|
82
|
+
#define O_RANDOM _O_RANDOM
|
83
|
+
|
84
|
+
#endif /* Not _NO_OLDNAMES */
|
85
|
+
|
86
|
+
|
87
|
+
#ifndef RC_INVOKED
|
88
|
+
|
89
|
+
/*
|
90
|
+
* This variable determines the default file mode.
|
91
|
+
* TODO: Which flags work?
|
92
|
+
*/
|
93
|
+
#ifndef __DECLSPEC_SUPPORTED
|
94
|
+
|
95
|
+
#ifdef __MSVCRT__
|
96
|
+
extern unsigned int* __imp__fmode;
|
97
|
+
#define _fmode (*__imp__fmode)
|
98
|
+
#else
|
99
|
+
/* CRTDLL */
|
100
|
+
extern unsigned int* __imp__fmode_dll;
|
101
|
+
#define _fmode (*__imp__fmode_dll)
|
102
|
+
#endif
|
103
|
+
|
104
|
+
#else /* __DECLSPEC_SUPPORTED */
|
105
|
+
|
106
|
+
#ifdef __MSVCRT__
|
107
|
+
__MINGW_IMPORT unsigned int _fmode;
|
108
|
+
#else /* ! __MSVCRT__ */
|
109
|
+
__MINGW_IMPORT unsigned int _fmode_dll;
|
110
|
+
#define _fmode _fmode_dll
|
111
|
+
#endif /* ! __MSVCRT__ */
|
112
|
+
|
113
|
+
#endif /* __DECLSPEC_SUPPORTED */
|
114
|
+
|
115
|
+
|
116
|
+
#ifdef __cplusplus
|
117
|
+
extern "C" {
|
118
|
+
#endif
|
119
|
+
|
120
|
+
int _setmode (int, int);
|
121
|
+
|
122
|
+
#ifndef _NO_OLDNAMES
|
123
|
+
int setmode (int, int);
|
124
|
+
#endif /* Not _NO_OLDNAMES */
|
125
|
+
|
126
|
+
#ifdef __cplusplus
|
127
|
+
}
|
128
|
+
#endif
|
129
|
+
|
130
|
+
#endif /* Not RC_INVOKED */
|
131
|
+
|
132
|
+
#endif /* Not _FCNTL_H_ */
|
133
|
+
|
134
|
+
#endif /* Not __STRICT_ANSI__ */
|
135
|
+
|