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
975abdea
Commit
975abdea
authored
Mar 20, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 20, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Added WerUnregisterMemoryBlock() stub.
parent
f548ce29
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
wer.c
dlls/kernel32/wer.c
+12
-0
werapi.h
include/werapi.h
+4
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
975abdea
...
@@ -1275,6 +1275,7 @@
...
@@ -1275,6 +1275,7 @@
@ stdcall WerRegisterMemoryBlock(ptr long)
@ stdcall WerRegisterMemoryBlock(ptr long)
@ stdcall WerRegisterRuntimeExceptionModule(wstr ptr)
@ stdcall WerRegisterRuntimeExceptionModule(wstr ptr)
@ stdcall WerSetFlags(long)
@ stdcall WerSetFlags(long)
@ stdcall WerUnregisterMemoryBlock(ptr)
@ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr)
@ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr)
@ stdcall WinExec(str long)
@ stdcall WinExec(str long)
@ stdcall Wow64EnableWow64FsRedirection(long)
@ stdcall Wow64EnableWow64FsRedirection(long)
...
...
dlls/kernel32/wer.c
View file @
975abdea
...
@@ -64,8 +64,20 @@ HRESULT WINAPI WerSetFlags(DWORD flags)
...
@@ -64,8 +64,20 @@ HRESULT WINAPI WerSetFlags(DWORD flags)
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
/***********************************************************************
* WerRegisterMemoryBlock (KERNEL32.@)
*/
HRESULT
WINAPI
WerRegisterMemoryBlock
(
void
*
block
,
DWORD
size
)
HRESULT
WINAPI
WerRegisterMemoryBlock
(
void
*
block
,
DWORD
size
)
{
{
FIXME
(
"(%p %d) stub
\n
"
,
block
,
size
);
FIXME
(
"(%p %d) stub
\n
"
,
block
,
size
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
/***********************************************************************
* WerUnregisterMemoryBlock (KERNEL32.@)
*/
HRESULT
WINAPI
WerUnregisterMemoryBlock
(
void
*
block
)
{
FIXME
(
"(%p) stub
\n
"
,
block
);
return
E_NOTIMPL
;
}
include/werapi.h
View file @
975abdea
...
@@ -175,6 +175,8 @@ typedef struct _WER_EXCEPTION_INFORMATION
...
@@ -175,6 +175,8 @@ typedef struct _WER_EXCEPTION_INFORMATION
HRESULT
WINAPI
WerAddExcludedApplication
(
PCWSTR
,
BOOL
);
HRESULT
WINAPI
WerAddExcludedApplication
(
PCWSTR
,
BOOL
);
HRESULT
WINAPI
WerRegisterFile
(
PCWSTR
file
,
WER_REGISTER_FILE_TYPE
regfiletype
,
DWORD
flags
);
HRESULT
WINAPI
WerRegisterFile
(
PCWSTR
file
,
WER_REGISTER_FILE_TYPE
regfiletype
,
DWORD
flags
);
HRESULT
WINAPI
WerRegisterMemoryBlock
(
void
*
block
,
DWORD
size
);
HRESULT
WINAPI
WerRegisterRuntimeExceptionModule
(
PCWSTR
callbackdll
,
void
*
context
);
HRESULT
WINAPI
WerRemoveExcludedApplication
(
PCWSTR
,
BOOL
);
HRESULT
WINAPI
WerRemoveExcludedApplication
(
PCWSTR
,
BOOL
);
HRESULT
WINAPI
WerReportAddFile
(
HREPORT
,
PCWSTR
,
WER_FILE_TYPE
,
DWORD
);
HRESULT
WINAPI
WerReportAddFile
(
HREPORT
,
PCWSTR
,
WER_FILE_TYPE
,
DWORD
);
HRESULT
WINAPI
WerReportCloseHandle
(
HREPORT
);
HRESULT
WINAPI
WerReportCloseHandle
(
HREPORT
);
...
@@ -182,6 +184,8 @@ HRESULT WINAPI WerReportCreate(PCWSTR, WER_REPORT_TYPE, PWER_REPORT_INFORMATION,
...
@@ -182,6 +184,8 @@ HRESULT WINAPI WerReportCreate(PCWSTR, WER_REPORT_TYPE, PWER_REPORT_INFORMATION,
HRESULT
WINAPI
WerReportSetParameter
(
HREPORT
,
DWORD
,
PCWSTR
,
PCWSTR
);
HRESULT
WINAPI
WerReportSetParameter
(
HREPORT
,
DWORD
,
PCWSTR
,
PCWSTR
);
HRESULT
WINAPI
WerReportSetUIOption
(
HREPORT
,
WER_REPORT_UI
,
PCWSTR
);
HRESULT
WINAPI
WerReportSetUIOption
(
HREPORT
,
WER_REPORT_UI
,
PCWSTR
);
HRESULT
WINAPI
WerReportSubmit
(
HREPORT
,
WER_CONSENT
,
DWORD
,
PWER_SUBMIT_RESULT
);
HRESULT
WINAPI
WerReportSubmit
(
HREPORT
,
WER_CONSENT
,
DWORD
,
PWER_SUBMIT_RESULT
);
HRESULT
WINAPI
WerSetFlags
(
DWORD
flags
);
HRESULT
WINAPI
WerUnregisterMemoryBlock
(
void
*
block
);
#ifdef __cplusplus
#ifdef __cplusplus
}
}
...
...
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