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
bde73d8d
Commit
bde73d8d
authored
May 04, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
May 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Make assembly_rva_to_va() and parse_headers() static.
parent
fcda2bd9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
assembly.c
dlls/mscoree/assembly.c
+2
-2
mscoree_private.h
dlls/mscoree/mscoree_private.h
+0
-1
No files found.
dlls/mscoree/assembly.c
View file @
bde73d8d
...
...
@@ -92,7 +92,7 @@ static inline LPWSTR strdupW(LPCWSTR src)
return
dest
;
}
void
*
assembly_rva_to_va
(
ASSEMBLY
*
assembly
,
ULONG
rva
)
static
void
*
assembly_rva_to_va
(
ASSEMBLY
*
assembly
,
ULONG
rva
)
{
if
(
assembly
->
is_mapped_file
)
return
ImageRvaToVa
(
assembly
->
nthdr
,
assembly
->
data
,
rva
,
NULL
);
...
...
@@ -190,7 +190,7 @@ static HRESULT parse_pe_header(ASSEMBLY *assembly)
return
S_OK
;
}
HRESULT
parse_headers
(
ASSEMBLY
*
assembly
)
static
HRESULT
parse_headers
(
ASSEMBLY
*
assembly
)
{
HRESULT
hr
;
...
...
dlls/mscoree/mscoree_private.h
View file @
bde73d8d
...
...
@@ -35,7 +35,6 @@ typedef struct _VTableFixup {
typedef
struct
tagASSEMBLY
ASSEMBLY
;
extern
void
*
assembly_rva_to_va
(
ASSEMBLY
*
assembly
,
ULONG
rva
)
DECLSPEC_HIDDEN
;
extern
HRESULT
assembly_create
(
ASSEMBLY
**
out
,
LPCWSTR
file
)
DECLSPEC_HIDDEN
;
extern
HRESULT
assembly_from_hmodule
(
ASSEMBLY
**
out
,
HMODULE
hmodule
)
DECLSPEC_HIDDEN
;
extern
HRESULT
assembly_release
(
ASSEMBLY
*
assembly
)
DECLSPEC_HIDDEN
;
...
...
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