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
48ff6fa9
Commit
48ff6fa9
authored
Jul 29, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 30, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Added WerRegisterMemoryBlock stub.
parent
bf0c67c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
wer.c
dlls/kernel32/wer.c
+6
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
48ff6fa9
...
...
@@ -1253,6 +1253,7 @@
@ stdcall WaitNamedPipeA (str long)
@ stdcall WaitNamedPipeW (wstr long)
@ stdcall WerRegisterFile(wstr long long)
@ stdcall WerRegisterMemoryBlock(ptr long)
@ stdcall WerRegisterRuntimeExceptionModule(wstr ptr)
@ stdcall WerSetFlags(long)
@ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr)
...
...
dlls/kernel32/wer.c
View file @
48ff6fa9
...
...
@@ -63,3 +63,9 @@ HRESULT WINAPI WerSetFlags(DWORD flags)
FIXME
(
"(%d) stub!
\n
"
,
flags
);
return
E_NOTIMPL
;
}
HRESULT
WINAPI
WerRegisterMemoryBlock
(
void
*
block
,
DWORD
size
)
{
FIXME
(
"(%p %d) stub
\n
"
,
block
,
size
);
return
E_NOTIMPL
;
}
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