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
45daffaa
Commit
45daffaa
authored
Feb 25, 2000
by
Hidenori Takeshima
Committed by
Alexandre Julliard
Feb 25, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed CharNextA/CharNextExA for DBCS.
parent
1758f2d8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lstr.c
misc/lstr.c
+2
-2
No files found.
misc/lstr.c
View file @
45daffaa
...
...
@@ -181,7 +181,7 @@ SEGPTR WINAPI AnsiPrev16( SEGPTR start, SEGPTR current )
LPSTR
WINAPI
CharNextA
(
LPCSTR
ptr
)
{
if
(
!*
ptr
)
return
(
LPSTR
)
ptr
;
if
(
IsDBCSLeadByte
(
*
ptr
))
return
(
LPSTR
)(
ptr
+
2
);
if
(
IsDBCSLeadByte
(
*
ptr
)
&&
(
*
(
ptr
+
1
)
!=
0
)
)
return
(
LPSTR
)(
ptr
+
2
);
return
(
LPSTR
)(
ptr
+
1
);
}
...
...
@@ -192,7 +192,7 @@ LPSTR WINAPI CharNextA( LPCSTR ptr )
LPSTR
WINAPI
CharNextExA
(
WORD
codepage
,
LPCSTR
ptr
,
DWORD
flags
)
{
if
(
!*
ptr
)
return
(
LPSTR
)
ptr
;
if
(
IsDBCSLeadByteEx
(
codepage
,
*
ptr
))
return
(
LPSTR
)(
ptr
+
2
);
if
(
IsDBCSLeadByteEx
(
codepage
,
*
ptr
)
&&
(
*
(
ptr
+
1
)
!=
0
)
)
return
(
LPSTR
)(
ptr
+
2
);
return
(
LPSTR
)(
ptr
+
1
);
}
...
...
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