make_unicode: Remove duplicate DECLSPEC_HIDDEN.

Spotted by Matteo Bruni.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Alexandre Julliard 2019-05-24 10:13:29 +02:00
parent 6b2b6cde8b
commit c52b2f1284
5 changed files with 6 additions and 7 deletions

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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);