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
26d50d6e
Commit
26d50d6e
authored
Aug 24, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Don't include mbstring.h to avoid conflicts with system headers.
parent
f3e13174
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
mbcs.c
dlls/msvcrt/mbcs.c
+8
-9
No files found.
dlls/msvcrt/mbcs.c
View file @
26d50d6e
...
...
@@ -27,7 +27,6 @@
#include "wine/unicode.h"
#include "wine/debug.h"
#include "msvcrt/mbctype.h"
#include "msvcrt/mbstring.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
...
...
@@ -332,6 +331,14 @@ unsigned char* CDECL _mbsdec(const unsigned char* start, const unsigned char* cu
}
/*********************************************************************
* _mbclen(MSVCRT.@)
*/
unsigned
int
CDECL
_mbclen
(
const
unsigned
char
*
str
)
{
return
_ismbblead
(
*
str
)
?
2
:
1
;
}
/*********************************************************************
* _mbsinc(MSVCRT.@)
*/
unsigned
char
*
CDECL
_mbsinc
(
const
unsigned
char
*
str
)
...
...
@@ -363,14 +370,6 @@ unsigned char* CDECL _mbsninc(const unsigned char* str, MSVCRT_size_t num)
}
/*********************************************************************
* _mbclen(MSVCRT.@)
*/
unsigned
int
CDECL
_mbclen
(
const
unsigned
char
*
str
)
{
return
_ismbblead
(
*
str
)
?
2
:
1
;
}
/*********************************************************************
* _mbslen(MSVCRT.@)
*/
MSVCRT_size_t
CDECL
_mbslen
(
const
unsigned
char
*
str
)
...
...
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