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
b70154a5
Commit
b70154a5
authored
Nov 28, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Remove DECLSPEC_HIDDEN usage.
parent
7b1fe26b
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
analyzer.c
dlls/dwrite/analyzer.c
+3
-3
bidi.c
dlls/dwrite/bidi.c
+2
-2
dwrite_private.h
dlls/dwrite/dwrite_private.h
+0
-0
opentype.c
dlls/dwrite/opentype.c
+1
-1
arabic.c
dlls/dwrite/shapers/arabic.c
+1
-1
No files found.
dlls/dwrite/analyzer.c
View file @
b70154a5
...
@@ -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
...
...
dlls/dwrite/bidi.c
View file @
b70154a5
...
@@ -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
...
...
dlls/dwrite/dwrite_private.h
View file @
b70154a5
This diff is collapsed.
Click to expand it.
dlls/dwrite/opentype.c
View file @
b70154a5
...
@@ -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
;
...
...
dlls/dwrite/shapers/arabic.c
View file @
b70154a5
...
@@ -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
)
{
{
...
...
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