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
c52b2f12
Commit
c52b2f12
authored
May 24, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make_unicode: Remove duplicate DECLSPEC_HIDDEN.
Spotted by Matteo Bruni. Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6b2b6cde
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
7 deletions
+6
-7
direction.c
dlls/dwrite/direction.c
+1
-1
direction.c
dlls/gdi32/direction.c
+1
-1
wctype.c
dlls/kernel32/wctype.c
+1
-1
direction.c
dlls/usp10/direction.c
+1
-1
make_unicode
tools/make_unicode
+2
-3
No files found.
dlls/dwrite/direction.c
View file @
c52b2f12
...
...
@@ -3,7 +3,7 @@
#include "windef.h"
const
unsigned
short
DECLSPEC_HIDDEN
DECLSPEC_HIDDEN
bidi_direction_table
[
4512
]
=
const
unsigned
short
DECLSPEC_HIDDEN
bidi_direction_table
[
4512
]
=
{
/* level 1 offsets */
0x0100
,
0x0110
,
0x0120
,
0x0130
,
0x0140
,
0x0150
,
0x0160
,
0x0170
,
...
...
dlls/gdi32/direction.c
View file @
c52b2f12
...
...
@@ -3,7 +3,7 @@
#include "windef.h"
const
unsigned
short
DECLSPEC_HIDDEN
DECLSPEC_HIDDEN
bidi_direction_table
[
4512
]
=
const
unsigned
short
DECLSPEC_HIDDEN
bidi_direction_table
[
4512
]
=
{
/* level 1 offsets */
0x0100
,
0x0110
,
0x0120
,
0x0130
,
0x0140
,
0x0150
,
0x0160
,
0x0170
,
...
...
dlls/kernel32/wctype.c
View file @
c52b2f12
...
...
@@ -3,7 +3,7 @@
#include "windef.h"
const
unsigned
short
DECLSPEC_HIDDEN
DECLSPEC_HIDDEN
wctype_table
[
7664
]
=
const
unsigned
short
DECLSPEC_HIDDEN
wctype_table
[
7664
]
=
{
/* level 1 offsets */
0x0100
,
0x0110
,
0x0120
,
0x0130
,
0x0140
,
0x0150
,
0x0160
,
0x0170
,
...
...
dlls/usp10/direction.c
View file @
c52b2f12
...
...
@@ -3,7 +3,7 @@
#include "windef.h"
const
unsigned
short
DECLSPEC_HIDDEN
DECLSPEC_HIDDEN
bidi_direction_table
[
4512
]
=
const
unsigned
short
DECLSPEC_HIDDEN
bidi_direction_table
[
4512
]
=
{
/* level 1 offsets */
0x0100
,
0x0110
,
0x0120
,
0x0130
,
0x0140
,
0x0150
,
0x0160
,
0x0170
,
...
...
tools/make_unicode
View file @
c52b2f12
...
...
@@ -2251,7 +2251,7 @@ sub dump_string_type_table($)
$table
[
$i
]
|=
$c2_types
{
$direction_table
[
$i
]}
<<
12
if
defined
$direction_table
[
$i
];
}
dump_two_level_mapping
(
"
DECLSPEC_HIDDEN
wctype_table"
,
0
,
@table
);
dump_two_level_mapping
(
"wctype_table"
,
0
,
@table
);
close
OUTPUT
;
save_file
(
$filename
);
...
...
@@ -2276,8 +2276,7 @@ sub dump_bidi_dir_table($)
$table
[
$i
]
=
$bidi_types
{
$direction_table
[
$i
]}
if
defined
$direction_table
[
$i
];
}
dump_two_level_mapping
(
"DECLSPEC_HIDDEN bidi_direction_table"
,
$bidi_types
{
"L"
},
@table
);
dump_two_level_mapping
(
"bidi_direction_table"
,
$bidi_types
{
"L"
},
@table
);
close
OUTPUT
;
save_file
(
$filename
);
...
...
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