Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9ec800fd
Commit
9ec800fd
authored
Oct 14, 2004
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prefix _fsopen with MSVCRT_ to avoid collision with MinGW header.
Typo fix.
parent
baeec1f4
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
file.c
dlls/msvcrt/file.c
+1
-1
msvcrt.h
dlls/msvcrt/msvcrt.h
+1
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcrt/file.c
View file @
9ec800fd
...
...
@@ -2183,7 +2183,7 @@ MSVCRT_FILE *MSVCRT__wfopen(const MSVCRT_wchar_t *path, const MSVCRT_wchar_t *mo
/*********************************************************************
* _fsopen (MSVCRT.@)
*/
MSVCRT_FILE
*
_fsopen
(
const
char
*
path
,
const
char
*
mode
,
int
share
)
MSVCRT_FILE
*
MSVCRT_
_fsopen
(
const
char
*
path
,
const
char
*
mode
,
int
share
)
{
FIXME
(
":(%s,%s,%d),ignoring share mode!
\n
"
,
path
,
mode
,
share
);
return
MSVCRT_fopen
(
path
,
mode
);
...
...
dlls/msvcrt/msvcrt.h
View file @
9ec800fd
...
...
@@ -20,7 +20,7 @@
* Naming conventions
* - Symbols are prefixed with MSVCRT_ if they conflict
* with libc symbols
* - Internal symbol
x
are usually prefixed by msvcrt_.
* - Internal symbol
s
are usually prefixed by msvcrt_.
* - Exported symbols that are not present in the public
* headers are usually kept the same as the original.
* Other conventions
...
...
dlls/msvcrt/msvcrt.spec
View file @
9ec800fd
...
...
@@ -239,7 +239,7 @@
@ cdecl _fpreset()
@ cdecl _fputchar(long)
@ cdecl _fputwchar(long)
@ cdecl _fsopen(str str long)
@ cdecl _fsopen(str str long)
MSVCRT__fsopen
@ cdecl _fstat(long ptr) MSVCRT__fstat
@ cdecl _fstati64(long ptr) MSVCRT__fstati64
@ cdecl _ftime(ptr)
...
...
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