Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
dd009533
Commit
dd009533
authored
Nov 06, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Nov 13, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Remove DECLSPEC_HIDDEN usage.
parent
6153ced0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
coff.c
dlls/dbghelp/coff.c
+1
-1
cpu_arm.c
dlls/dbghelp/cpu_arm.c
+1
-1
cpu_arm64.c
dlls/dbghelp/cpu_arm64.c
+1
-1
cpu_i386.c
dlls/dbghelp/cpu_i386.c
+1
-1
cpu_x86_64.c
dlls/dbghelp/cpu_x86_64.c
+1
-1
dbghelp_private.h
dlls/dbghelp/dbghelp_private.h
+0
-0
image_private.h
dlls/dbghelp/image_private.h
+4
-4
No files found.
dlls/dbghelp/coff.c
View file @
dd009533
...
...
@@ -143,7 +143,7 @@ static void coff_add_symbol(struct CoffFile* coff_file, struct symt* sym)
coff_file
->
entries
[
coff_file
->
neps
++
]
=
sym
;
}
DECLSPEC_HIDDEN
BOOL
coff_process_info
(
const
struct
msc_debug_info
*
msc_dbg
)
BOOL
coff_process_info
(
const
struct
msc_debug_info
*
msc_dbg
)
{
const
IMAGE_AUX_SYMBOL
*
aux
;
const
IMAGE_COFF_SYMBOLS_HEADER
*
coff
;
...
...
dlls/dbghelp/cpu_arm.c
View file @
dd009533
...
...
@@ -242,7 +242,7 @@ static BOOL arm_fetch_minidump_module(struct dump_context* dc, unsigned index, u
return
FALSE
;
}
DECLSPEC_HIDDEN
struct
cpu
cpu_arm
=
{
struct
cpu
cpu_arm
=
{
IMAGE_FILE_MACHINE_ARMNT
,
4
,
CV_ARM_R0
+
11
,
...
...
dlls/dbghelp/cpu_arm64.c
View file @
dd009533
...
...
@@ -278,7 +278,7 @@ static BOOL arm64_fetch_minidump_module(struct dump_context* dc, unsigned index,
return
FALSE
;
}
DECLSPEC_HIDDEN
struct
cpu
cpu_arm64
=
{
struct
cpu
cpu_arm64
=
{
IMAGE_FILE_MACHINE_ARM64
,
8
,
CV_ARM64_FP
,
...
...
dlls/dbghelp/cpu_i386.c
View file @
dd009533
...
...
@@ -702,7 +702,7 @@ static BOOL i386_fetch_minidump_module(struct dump_context* dc, unsigned index,
return
FALSE
;
}
DECLSPEC_HIDDEN
struct
cpu
cpu_i386
=
{
struct
cpu
cpu_i386
=
{
IMAGE_FILE_MACHINE_I386
,
4
,
CV_REG_EBP
,
...
...
dlls/dbghelp/cpu_x86_64.c
View file @
dd009533
...
...
@@ -991,7 +991,7 @@ static BOOL x86_64_fetch_minidump_module(struct dump_context* dc, unsigned index
return
TRUE
;
}
DECLSPEC_HIDDEN
struct
cpu
cpu_x86_64
=
{
struct
cpu
cpu_x86_64
=
{
IMAGE_FILE_MACHINE_AMD64
,
8
,
CV_AMD64_RSP
,
...
...
dlls/dbghelp/dbghelp_private.h
View file @
dd009533
This diff is collapsed.
Click to expand it.
dlls/dbghelp/image_private.h
View file @
dd009533
...
...
@@ -193,11 +193,11 @@ struct macho64_nlist
UINT64
n_value
;
};
BOOL
image_check_alternate
(
struct
image_file_map
*
fmap
,
const
struct
module
*
module
)
DECLSPEC_HIDDEN
;
struct
image_file_map
*
image_load_debugaltlink
(
struct
image_file_map
*
fmap
,
struct
module
*
module
)
DECLSPEC_HIDDEN
;
BOOL
image_check_alternate
(
struct
image_file_map
*
fmap
,
const
struct
module
*
module
);
struct
image_file_map
*
image_load_debugaltlink
(
struct
image_file_map
*
fmap
,
struct
module
*
module
);
BOOL
elf_map_handle
(
HANDLE
handle
,
struct
image_file_map
*
fmap
)
DECLSPEC_HIDDEN
;
BOOL
pe_map_file
(
HANDLE
file
,
struct
image_file_map
*
fmap
)
DECLSPEC_HIDDEN
;
BOOL
elf_map_handle
(
HANDLE
handle
,
struct
image_file_map
*
fmap
);
BOOL
pe_map_file
(
HANDLE
file
,
struct
image_file_map
*
fmap
);
struct
image_file_map_ops
{
...
...
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