Commit c52b2f12 authored by Alexandre Julliard's avatar Alexandre Julliard

make_unicode: Remove duplicate DECLSPEC_HIDDEN.

Spotted by Matteo Bruni. Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 6b2b6cde
......@@ -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,
......
......@@ -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,
......
......@@ -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,
......
......@@ -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,
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment