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
a7f78321
Commit
a7f78321
authored
Nov 16, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wow64: Remove DECLSPEC_HIDDEN usage.
parent
c2868b33
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
syscall.c
dlls/wow64/syscall.c
+1
-1
wow64_private.h
dlls/wow64/wow64_private.h
+11
-11
No files found.
dlls/wow64/syscall.c
View file @
a7f78321
...
...
@@ -334,7 +334,7 @@ static void call_raise_user_exception_dispatcher( ULONG code )
/* based on RtlRaiseException: call NtRaiseException with context setup to return to caller */
void
WINAPI
raise_exception
(
EXCEPTION_RECORD
*
rec
,
CONTEXT
*
context
,
BOOL
first_chance
)
DECLSPEC_HIDDEN
;
void
WINAPI
raise_exception
(
EXCEPTION_RECORD
*
rec
,
CONTEXT
*
context
,
BOOL
first_chance
);
#ifdef __x86_64__
__ASM_GLOBAL_FUNC
(
raise_exception
,
"sub $0x28,%rsp
\n\t
"
...
...
dlls/wow64/wow64_private.h
View file @
a7f78321
...
...
@@ -28,16 +28,16 @@
ALL_SYSCALLS32
#undef SYSCALL_ENTRY
extern
void
init_image_mapping
(
HMODULE
module
)
DECLSPEC_HIDDEN
;
extern
void
init_file_redirects
(
void
)
DECLSPEC_HIDDEN
;
extern
BOOL
get_file_redirect
(
OBJECT_ATTRIBUTES
*
attr
)
DECLSPEC_HIDDEN
;
extern
void
init_image_mapping
(
HMODULE
module
);
extern
void
init_file_redirects
(
void
);
extern
BOOL
get_file_redirect
(
OBJECT_ATTRIBUTES
*
attr
);
extern
USHORT
native_machine
DECLSPEC_HIDDEN
;
extern
USHORT
current_machine
DECLSPEC_HIDDEN
;
extern
ULONG_PTR
args_alignment
DECLSPEC_HIDDEN
;
extern
ULONG_PTR
highest_user_address
DECLSPEC_HIDDEN
;
extern
ULONG_PTR
default_zero_bits
DECLSPEC_HIDDEN
;
extern
SYSTEM_DLL_INIT_BLOCK
*
pLdrSystemDllInitBlock
DECLSPEC_HIDDEN
;
extern
USHORT
native_machine
;
extern
USHORT
current_machine
;
extern
ULONG_PTR
args_alignment
;
extern
ULONG_PTR
highest_user_address
;
extern
ULONG_PTR
default_zero_bits
;
extern
SYSTEM_DLL_INIT_BLOCK
*
pLdrSystemDllInitBlock
;
extern
void
(
WINAPI
*
pBTCpuNotifyFlushInstructionCache2
)(
const
void
*
,
SIZE_T
);
extern
void
(
WINAPI
*
pBTCpuNotifyMapViewOfSection
)(
void
*
);
...
...
@@ -245,8 +245,8 @@ static inline void put_iosb( IO_STATUS_BLOCK32 *io32, const IO_STATUS_BLOCK *io
}
extern
void
put_section_image_info
(
SECTION_IMAGE_INFORMATION32
*
info32
,
const
SECTION_IMAGE_INFORMATION
*
info
)
DECLSPEC_HIDDEN
;
const
SECTION_IMAGE_INFORMATION
*
info
);
extern
void
put_vm_counters
(
VM_COUNTERS_EX32
*
info32
,
const
VM_COUNTERS_EX
*
info
,
ULONG
size
)
DECLSPEC_HIDDEN
;
ULONG
size
);
#endif
/* __WOW64_PRIVATE_H */
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