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
566e77ba
Commit
566e77ba
authored
Sep 07, 2000
by
Erik Hofman
Committed by
Alexandre Julliard
Sep 07, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing const to external tables definitions.
parent
44b5bf59
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
unicode.h
include/wine/unicode.h
+3
-3
No files found.
include/wine/unicode.h
View file @
566e77ba
...
...
@@ -63,13 +63,13 @@ static inline int is_dbcs_leadbyte( const union cptable *table, unsigned char ch
static
inline
WCHAR
tolowerW
(
WCHAR
ch
)
{
extern
WCHAR
casemap_lower
[];
extern
const
WCHAR
casemap_lower
[];
return
ch
+
casemap_lower
[
casemap_lower
[
ch
>>
8
]
+
(
ch
&
0xff
)];
}
static
inline
WCHAR
toupperW
(
WCHAR
ch
)
{
extern
WCHAR
casemap_upper
[];
extern
const
WCHAR
casemap_upper
[];
return
ch
+
casemap_upper
[
casemap_upper
[
ch
>>
8
]
+
(
ch
&
0xff
)];
}
...
...
@@ -77,7 +77,7 @@ static inline WCHAR toupperW( WCHAR ch )
/* and the C2_* type in the high 4 bits */
static
inline
unsigned
short
get_char_typeW
(
WCHAR
ch
)
{
extern
unsigned
short
wctype_table
[];
extern
const
unsigned
short
wctype_table
[];
return
wctype_table
[
wctype_table
[
ch
>>
8
]
+
(
ch
&
0xff
)];
}
...
...
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