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
a2cd6430
Commit
a2cd6430
authored
Jul 27, 2007
by
Peter Dons Tychsen
Committed by
Alexandre Julliard
Aug 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
faultrep: Add a stub dll.
parent
7f1db3a3
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
77 additions
and
0 deletions
+77
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/Makefile.in
+1
-0
Makefile.in
dlls/faultrep/Makefile.in
+12
-0
faultrep.c
dlls/faultrep/faultrep.c
+44
-0
faultrep.spec
dlls/faultrep/faultrep.spec
+14
-0
No files found.
Makefile.in
View file @
a2cd6430
...
...
@@ -233,6 +233,7 @@ ALL_MAKEFILES = \
dlls/dxerr8/Makefile
\
dlls/dxerr9/Makefile
\
dlls/dxguid/Makefile
\
dlls/faultrep/Makefile
\
dlls/gdi32/Makefile
\
dlls/gdi32/tests/Makefile
\
dlls/gdiplus/Makefile
\
...
...
@@ -598,6 +599,7 @@ dlls/dxdiagn/Makefile: dlls/dxdiagn/Makefile.in dlls/Makedll.rules
dlls/dxerr8/Makefile
:
dlls/dxerr8/Makefile.in dlls/Makeimplib.rules
dlls/dxerr9/Makefile
:
dlls/dxerr9/Makefile.in dlls/Makeimplib.rules
dlls/dxguid/Makefile
:
dlls/dxguid/Makefile.in dlls/Makeimplib.rules
dlls/faultrep/Makefile
:
dlls/faultrep/Makefile.in dlls/Makedll.rules
dlls/gdi32/Makefile
:
dlls/gdi32/Makefile.in dlls/Makedll.rules
dlls/gdi32/tests/Makefile
:
dlls/gdi32/tests/Makefile.in dlls/Maketest.rules
dlls/gdiplus/Makefile
:
dlls/gdiplus/Makefile.in dlls/Makedll.rules
...
...
configure
View file @
a2cd6430
...
...
@@ -20416,6 +20416,8 @@ ac_config_files="$ac_config_files dlls/dxerr9/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/dxguid/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/faultrep/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/gdi32/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/gdi32/tests/Makefile"
...
...
@@ -21607,6 +21609,7 @@ do
"dlls/dxerr8/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/dxerr8/Makefile" ;;
"dlls/dxerr9/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/dxerr9/Makefile" ;;
"dlls/dxguid/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/dxguid/Makefile" ;;
"dlls/faultrep/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/faultrep/Makefile" ;;
"dlls/gdi32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/gdi32/Makefile" ;;
"dlls/gdi32/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/gdi32/tests/Makefile" ;;
"dlls/gdiplus/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/gdiplus/Makefile" ;;
...
...
configure.ac
View file @
a2cd6430
...
...
@@ -1634,6 +1634,7 @@ AC_CONFIG_FILES([dlls/dxdiagn/Makefile])
AC_CONFIG_FILES([dlls/dxerr8/Makefile])
AC_CONFIG_FILES([dlls/dxerr9/Makefile])
AC_CONFIG_FILES([dlls/dxguid/Makefile])
AC_CONFIG_FILES([dlls/faultrep/Makefile])
AC_CONFIG_FILES([dlls/gdi32/Makefile])
AC_CONFIG_FILES([dlls/gdi32/tests/Makefile])
AC_CONFIG_FILES([dlls/gdiplus/Makefile])
...
...
dlls/Makefile.in
View file @
a2cd6430
...
...
@@ -73,6 +73,7 @@ BASEDIRS = \
dswave
\
dwmapi
\
dxdiagn
\
faultrep
\
gdi32
\
gdiplus
\
gphoto2.ds
\
...
...
dlls/faultrep/Makefile.in
0 → 100644
View file @
a2cd6430
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
faultrep.dll
IMPORTS
=
kernel32
C_SRCS
=
faultrep.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/faultrep/faultrep.c
0 → 100644
View file @
a2cd6430
/* Fault report handling
*
* Copyright 2007 Peter Dons Tychsen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
faultrep
);
/***********************************************************************
* DllMain.
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
inst
,
DWORD
reason
,
LPVOID
reserved
)
{
switch
(
reason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
inst
);
break
;
case
DLL_PROCESS_DETACH
:
break
;
}
return
TRUE
;
}
dlls/faultrep/faultrep.spec
0 → 100644
View file @
a2cd6430
@ stub AddERExcludedApplicationA
@ stub AddERExcludedApplicationW
@ stub CreateMinidumpA
@ stub CreateMinidumpW
@ stub ReportEREvent
@ stub ReportEREventDW
@ stub ReportFault
@ stub ReportFaultDWM
@ stub ReportFaultFromQueue
@ stub ReportFaultToQueue
@ stub ReportHang
@ stub ReportKernelFaultA
@ stub ReportKernelFaultDWW
@ stub ReportKernelFaultW
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