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
8c53b6fd
Commit
8c53b6fd
authored
Mar 31, 2013
by
Jactry Zeng
Committed by
Alexandre Julliard
Apr 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add missing declarations for _wcsncoll, _wcsncoll_l, _wcsicoll_l,…
msvcrt: Add missing declarations for _wcsncoll, _wcsncoll_l, _wcsicoll_l, _wcsnicoll_l and wcscoll_l.
parent
5af20ef1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
wchar.h
include/msvcrt/wchar.h
+5
-0
No files found.
include/msvcrt/wchar.h
View file @
8c53b6fd
...
...
@@ -401,12 +401,17 @@ int __cdecl wctomb(char*,wchar_t);
#ifndef _WSTRING_DEFINED
#define _WSTRING_DEFINED
int
__cdecl
_wcscoll_l
(
const
wchar_t
*
,
const
wchar_t
*
,
_locale_t
);
wchar_t
*
__cdecl
_wcsdup
(
const
wchar_t
*
);
int
__cdecl
_wcsicmp
(
const
wchar_t
*
,
const
wchar_t
*
);
int
__cdecl
_wcsicoll
(
const
wchar_t
*
,
const
wchar_t
*
);
int
__cdecl
_wcsicoll_l
(
const
wchar_t
*
,
const
wchar_t
*
,
_locale_t
);
wchar_t
*
__cdecl
_wcslwr
(
wchar_t
*
);
int
__cdecl
_wcsncoll
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
int
__cdecl
_wcsncoll_l
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
,
_locale_t
);
int
__cdecl
_wcsnicmp
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
int
__cdecl
_wcsnicoll
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
);
int
__cdecl
_wcsnicoll_l
(
const
wchar_t
*
,
const
wchar_t
*
,
size_t
,
_locale_t
);
wchar_t
*
__cdecl
_wcsnset
(
wchar_t
*
,
wchar_t
,
size_t
);
wchar_t
*
__cdecl
_wcsrev
(
wchar_t
*
);
wchar_t
*
__cdecl
_wcsset
(
wchar_t
*
,
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