Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
G
glog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
glog
Commits
f39f78c7
Commit
f39f78c7
authored
Mar 18, 2016
by
Artem Dinaburg
Committed by
NeroBurner
Jun 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define constants for _open and silence some warnings
parent
b54793d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
port.h
src/windows/port.h
+9
-1
No files found.
src/windows/port.h
View file @
f39f78c7
...
@@ -70,8 +70,11 @@
...
@@ -70,8 +70,11 @@
* 4715: for some reason VC++ stopped realizing you can't return after abort()
* 4715: for some reason VC++ stopped realizing you can't return after abort()
* 4800: we know we're casting ints/char*'s to bools, and we're ok with that
* 4800: we know we're casting ints/char*'s to bools, and we're ok with that
* 4996: Yes, we're ok using "unsafe" functions like fopen() and strerror()
* 4996: Yes, we're ok using "unsafe" functions like fopen() and strerror()
* 4312: Converting uint32_t to a pointer when testing %p
* 4267: also subtracting two size_t to int
* 4722: Destructor never returns due to abort()
*/
*/
#pragma warning(disable:4244 4251 4355 4715 4800 4996)
#pragma warning(disable:4244 4251 4355 4715 4800 4996
4267 4312 4722
)
/* file I/O */
/* file I/O */
#define PATH_MAX 1024
#define PATH_MAX 1024
...
@@ -86,6 +89,11 @@
...
@@ -86,6 +89,11 @@
#define pclose _pclose
#define pclose _pclose
#define R_OK 04
/* read-only (for access()) */
#define R_OK 04
/* read-only (for access()) */
#define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
#define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
#define O_WRONLY _O_WRONLY
#define O_CREAT _O_CREAT
#define O_EXCL _O_EXCL
#ifndef __MINGW32__
#ifndef __MINGW32__
enum
{
STDIN_FILENO
=
0
,
STDOUT_FILENO
=
1
,
STDERR_FILENO
=
2
};
enum
{
STDIN_FILENO
=
0
,
STDOUT_FILENO
=
1
,
STDERR_FILENO
=
2
};
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment