Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
024d39fc
Commit
024d39fc
authored
23 years ago
by
Bill Medland
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added share.h from Mingw32.
parent
9048c49b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/Makefile.in
+1
-0
1 addition, 0 deletions
include/Makefile.in
include/msvcrt/share.h
+35
-0
35 additions, 0 deletions
include/msvcrt/share.h
with
36 additions
and
0 deletions
include/Makefile.in
+
1
−
0
View file @
024d39fc
...
...
@@ -65,6 +65,7 @@ INSTALLED_INCLUDES = \
msvcrt/mbstring.h
\
msvcrt/process.h
\
msvcrt/search.h
\
msvcrt/share.h
\
msvcrt/stddef.h
\
msvcrt/stdio.h
\
msvcrt/stdlib.h
\
...
...
This diff is collapsed.
Click to expand it.
include/msvcrt/share.h
0 → 100644
+
35
−
0
View file @
024d39fc
/*
* share.h
*
* Constants for file sharing functions.
*
* Derived from the Mingw32 header written by Colin Peters.
* Modified for Wine use by Bill Medland
* This file is in the public domain.
*
* Original header contained the following
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
*/
#ifndef __WINE_SHARE_H
#define __WINE_SHARE_H
#define __WINE_USE_MSVCRT
#define SH_COMPAT 0x00
/* Compatibility */
#define SH_DENYRW 0x10
/* Deny read/write */
#define SH_DENYWR 0x20
/* Deny write */
#define SH_DENYRD 0x30
/* Deny read */
#define SH_DENYNO 0x40
/* Deny nothing */
#endif
/* __WINE_SHARE_H_ */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment