Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d3ab533e
Commit
d3ab533e
authored
Oct 28, 2003
by
Pierre d'Herbemont
Committed by
Alexandre Julliard
Oct 28, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed _wfullpath prototype.
parent
6e179896
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dir.c
dlls/msvcrt/dir.c
+1
-1
stdlib.h
include/msvcrt/stdlib.h
+1
-1
No files found.
dlls/msvcrt/dir.c
View file @
d3ab533e
...
...
@@ -587,7 +587,7 @@ static void wmsvcrt_fln_fix(MSVCRT_wchar_t *path)
/*********************************************************************
* _wfullpath (MSVCRT.@)
*/
MSVCRT_wchar_t
*
_wfullpath
(
MSVCRT_wchar_t
*
absPath
,
const
MSVCRT_wchar_t
*
relPath
,
unsigned
in
t
size
)
MSVCRT_wchar_t
*
_wfullpath
(
MSVCRT_wchar_t
*
absPath
,
const
MSVCRT_wchar_t
*
relPath
,
MSVCRT_size_
t
size
)
{
MSVCRT_wchar_t
drive
[
5
],
dir
[
MAX_PATH
],
file
[
MAX_PATH
],
ext
[
MAX_PATH
];
MSVCRT_wchar_t
res
[
MAX_PATH
];
...
...
include/msvcrt/stdlib.h
View file @
d3ab533e
...
...
@@ -203,7 +203,7 @@ MSVCRT(wchar_t)*_i64tow(__int64,MSVCRT(wchar_t)*,int);
MSVCRT
(
wchar_t
)
*
_ltow
(
long
,
MSVCRT
(
wchar_t
)
*
,
int
);
MSVCRT
(
wchar_t
)
*
_ui64tow
(
unsigned
__int64
,
MSVCRT
(
wchar_t
)
*
,
int
);
MSVCRT
(
wchar_t
)
*
_ultow
(
unsigned
long
,
MSVCRT
(
wchar_t
)
*
,
int
);
MSVCRT
(
wchar_t
)
*
_wfullpath
(
MSVCRT
(
wchar_t
)
*
,
const
MSVCRT
(
wchar_t
)
*
,
size_t
);
MSVCRT
(
wchar_t
)
*
_wfullpath
(
MSVCRT
(
wchar_t
)
*
,
const
MSVCRT
(
wchar_t
)
*
,
MSVCRT
(
size_t
)
);
MSVCRT
(
wchar_t
)
*
_wgetenv
(
const
MSVCRT
(
wchar_t
)
*
);
void
_wmakepath
(
MSVCRT
(
wchar_t
)
*
,
const
MSVCRT
(
wchar_t
)
*
,
const
MSVCRT
(
wchar_t
)
*
,
const
MSVCRT
(
wchar_t
)
*
,
const
MSVCRT
(
wchar_t
)
*
);
void
_wperror
(
const
MSVCRT
(
wchar_t
)
*
);
...
...
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