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
95f3be65
Commit
95f3be65
authored
Oct 13, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added missing calling convention specification.
parent
819225d9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
dir.c
dlls/msvcrt/dir.c
+2
-2
locale.c
dlls/msvcrt/locale.c
+1
-1
No files found.
dlls/msvcrt/dir.c
View file @
95f3be65
...
...
@@ -983,7 +983,7 @@ int CDECL MSVCRT__wrmdir(const MSVCRT_wchar_t * dir)
/******************************************************************
* _splitpath_s (MSVCRT.@)
*/
int
_splitpath_s
(
const
char
*
inpath
,
int
CDECL
_splitpath_s
(
const
char
*
inpath
,
char
*
drive
,
MSVCRT_size_t
sz_drive
,
char
*
dir
,
MSVCRT_size_t
sz_dir
,
char
*
fname
,
MSVCRT_size_t
sz_fname
,
...
...
@@ -1075,7 +1075,7 @@ void CDECL _splitpath(const char *inpath, char *drv, char *dir,
*
* Secure version of _wsplitpath
*/
int
_wsplitpath_s
(
const
MSVCRT_wchar_t
*
inpath
,
int
CDECL
_wsplitpath_s
(
const
MSVCRT_wchar_t
*
inpath
,
MSVCRT_wchar_t
*
drive
,
MSVCRT_size_t
sz_drive
,
MSVCRT_wchar_t
*
dir
,
MSVCRT_size_t
sz_dir
,
MSVCRT_wchar_t
*
fname
,
MSVCRT_size_t
sz_fname
,
...
...
dlls/msvcrt/locale.c
View file @
95f3be65
...
...
@@ -655,7 +655,7 @@ void CDECL MSVCRT__free_locale(MSVCRT__locale_t locale)
}
/* _create_locale - not exported in native msvcrt */
MSVCRT__locale_t
MSVCRT__create_locale
(
int
category
,
const
char
*
locale
)
MSVCRT__locale_t
CDECL
MSVCRT__create_locale
(
int
category
,
const
char
*
locale
)
{
static
const
char
collate
[]
=
"COLLATE="
;
static
const
char
ctype
[]
=
"CTYPE="
;
...
...
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