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
fef66ec0
Commit
fef66ec0
authored
Feb 21, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 21, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wer: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
07b55d29
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
Makefile.in
dlls/wer/Makefile.in
+0
-1
main.c
dlls/wer/main.c
+4
-4
No files found.
dlls/wer/Makefile.in
View file @
fef66ec0
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
wer.dll
IMPORTLIB
=
wer
IMPORTS
=
advapi32
...
...
dlls/wer/main.c
View file @
fef66ec0
...
...
@@ -155,7 +155,7 @@ HRESULT WINAPI WerReportAddDump(HREPORT hReportHandle, HANDLE hProcess, HANDLE h
WER_DUMP_TYPE
dumpType
,
PWER_EXCEPTION_INFORMATION
pExceptionParam
,
PWER_DUMP_CUSTOM_OPTIONS
pDumpCustomOptions
,
DWORD
dwFlags
)
{
FIXME
(
"(%p, %p, %p, %d, %p, %p, %u) :stub
\n
"
,
hReportHandle
,
hProcess
,
hThread
,
dumpType
,
FIXME
(
"(%p, %p, %p, %d, %p, %p, %
l
u) :stub
\n
"
,
hReportHandle
,
hProcess
,
hThread
,
dumpType
,
pExceptionParam
,
pDumpCustomOptions
,
dwFlags
);
return
E_NOTIMPL
;
...
...
@@ -179,7 +179,7 @@ HRESULT WINAPI WerReportAddDump(HREPORT hReportHandle, HANDLE hProcess, HANDLE h
*/
HRESULT
WINAPI
WerReportAddFile
(
HREPORT
hreport
,
PCWSTR
path
,
WER_FILE_TYPE
type
,
DWORD
flags
)
{
FIXME
(
"(%p, %s, %d, 0x%x) :stub
\n
"
,
hreport
,
debugstr_w
(
path
),
type
,
flags
);
FIXME
(
"(%p, %s, %d, 0x%
l
x) :stub
\n
"
,
hreport
,
debugstr_w
(
path
),
type
,
flags
);
return
S_OK
;
}
...
...
@@ -299,7 +299,7 @@ HRESULT WINAPI WerReportCreate(PCWSTR eventtype, WER_REPORT_TYPE reporttype, PWE
*/
HRESULT
WINAPI
WerReportSetParameter
(
HREPORT
hreport
,
DWORD
id
,
PCWSTR
name
,
PCWSTR
value
)
{
FIXME
(
"(%p, %d, %s, %s) :stub
\n
"
,
hreport
,
id
,
debugstr_w
(
name
),
debugstr_w
(
value
));
FIXME
(
"(%p, %
l
d, %s, %s) :stub
\n
"
,
hreport
,
id
,
debugstr_w
(
name
),
debugstr_w
(
value
));
return
S_OK
;
}
...
...
@@ -323,7 +323,7 @@ HRESULT WINAPI WerReportSetParameter(HREPORT hreport, DWORD id, PCWSTR name, PCW
*/
HRESULT
WINAPI
WerReportSubmit
(
HREPORT
hreport
,
WER_CONSENT
consent
,
DWORD
flags
,
PWER_SUBMIT_RESULT
presult
)
{
FIXME
(
"(%p, %d, 0x%x, %p) :stub
\n
"
,
hreport
,
consent
,
flags
,
presult
);
FIXME
(
"(%p, %d, 0x%
l
x, %p) :stub
\n
"
,
hreport
,
consent
,
flags
,
presult
);
if
(
!
presult
)
return
E_INVALIDARG
;
...
...
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