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
22953b84
Commit
22953b84
authored
Apr 19, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 19, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Add a stub implementation of GetRealProcAddress.
parent
ef9bb151
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
mscoree.spec
dlls/mscoree/mscoree.spec
+1
-1
mscoree_main.c
dlls/mscoree/mscoree_main.c
+6
-0
corerror.h
include/corerror.h
+1
-0
No files found.
dlls/mscoree/mscoree.spec
View file @
22953b84
...
...
@@ -57,7 +57,7 @@
@ stub GetPermissionRequests
@ stub GetPrivateContextsPerfCounters
@ stub GetProcessExecutableHeap
@ st
ub GetRealProcAddress
@ st
dcall GetRealProcAddress(str ptr)
@ stdcall GetRequestedRuntimeInfo(wstr wstr wstr long long ptr long ptr ptr long ptr)
@ stub GetRequestedRuntimeVersion
@ stub GetRequestedRuntimeVersionForCLSID
...
...
dlls/mscoree/mscoree_main.c
View file @
22953b84
...
...
@@ -249,6 +249,12 @@ HRESULT WINAPI GetRequestedRuntimeInfo(LPCWSTR pExe, LPCWSTR pwszVersion, LPCWST
return
ret
;
}
HRESULT
WINAPI
GetRealProcAddress
(
LPCSTR
procname
,
void
**
ppv
)
{
FIXME
(
"(%s, %p)
\n
"
,
debugstr_a
(
procname
),
ppv
);
return
CLR_E_SHIM_RUNTIMEEXPORT
;
}
HRESULT
WINAPI
GetFileVersion
(
LPCWSTR
szFilename
,
LPWSTR
szBuffer
,
DWORD
cchBuffer
,
DWORD
*
dwLength
)
{
TRACE
(
"(%s, %p, %d, %p)
\n
"
,
debugstr_w
(
szFilename
),
szBuffer
,
cchBuffer
,
dwLength
);
...
...
include/corerror.h
View file @
22953b84
...
...
@@ -124,5 +124,6 @@
#define CLDB_E_FILE_OLDVER EMAKEHR(0x1107)
#define CLR_E_SHIM_RUNTIME EMAKEHR(0x1700)
#define CLR_E_SHIM_RUNTIMEEXPORT EMAKEHR(0x1701)
#endif
/* __WINE_CORERROR_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