Commit b70154a5 authored by Alexandre Julliard's avatar Alexandre Julliard

dwrite: Remove DECLSPEC_HIDDEN usage.

parent 7b1fe26b
...@@ -28,9 +28,9 @@ ...@@ -28,9 +28,9 @@
WINE_DEFAULT_DEBUG_CHANNEL(dwrite); WINE_DEFAULT_DEBUG_CHANNEL(dwrite);
extern const unsigned short wine_linebreak_table[] DECLSPEC_HIDDEN; extern const unsigned short wine_linebreak_table[];
extern const unsigned short wine_scripts_table[] DECLSPEC_HIDDEN; extern const unsigned short wine_scripts_table[];
extern const unsigned short bidi_direction_table[] DECLSPEC_HIDDEN; extern const unsigned short bidi_direction_table[];
/* Number of characters needed for LOCALE_SNATIVEDIGITS */ /* Number of characters needed for LOCALE_SNATIVEDIGITS */
#define NATIVE_DIGITS_LEN 11 #define NATIVE_DIGITS_LEN 11
......
...@@ -51,8 +51,8 @@ ...@@ -51,8 +51,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(bidi); WINE_DEFAULT_DEBUG_CHANNEL(bidi);
extern const unsigned short bidi_bracket_table[] DECLSPEC_HIDDEN; extern const unsigned short bidi_bracket_table[];
extern const unsigned short bidi_direction_table[] DECLSPEC_HIDDEN; extern const unsigned short bidi_direction_table[];
#define ASSERT(x) do { if (!(x)) FIXME("assert failed: %s\n", #x); } while(0) #define ASSERT(x) do { if (!(x)) FIXME("assert failed: %s\n", #x); } while(0)
#define MAX_DEPTH 125 #define MAX_DEPTH 125
......
...@@ -5936,7 +5936,7 @@ static BOOL opentype_layout_apply_gsub_lookup(struct scriptshaping_context *cont ...@@ -5936,7 +5936,7 @@ static BOOL opentype_layout_apply_gsub_lookup(struct scriptshaping_context *cont
static unsigned int unicode_get_mirrored_char(unsigned int codepoint) static unsigned int unicode_get_mirrored_char(unsigned int codepoint)
{ {
extern const WCHAR wine_mirror_map[] DECLSPEC_HIDDEN; extern const WCHAR wine_mirror_map[];
WCHAR mirror; WCHAR mirror;
/* TODO: check if mirroring for higher planes makes sense at all */ /* TODO: check if mirroring for higher planes makes sense at all */
if (codepoint > 0xffff) return codepoint; if (codepoint > 0xffff) return codepoint;
......
...@@ -120,7 +120,7 @@ arabic_state_table[][JOINING_TYPES] = ...@@ -120,7 +120,7 @@ arabic_state_table[][JOINING_TYPES] =
{ {NONE,NONE,0}, {NONE,ISOL,2}, {NONE,ISOL,1}, {NONE,ISOL,2}, {NONE,FIN3,5}, {NONE,ISOL,6}, } { {NONE,NONE,0}, {NONE,ISOL,2}, {NONE,ISOL,1}, {NONE,ISOL,2}, {NONE,FIN3,5}, {NONE,ISOL,6}, }
}; };
extern const unsigned short arabic_shaping_table[] DECLSPEC_HIDDEN; extern const unsigned short arabic_shaping_table[];
static unsigned short arabic_get_joining_type(UINT ch) static unsigned short arabic_get_joining_type(UINT ch)
{ {
......
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