Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
73ab649c
Commit
73ab649c
authored
Feb 25, 2002
by
Peter Hunnisett
Committed by
Alexandre Julliard
Feb 25, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New file msvcrt/excpt.h. Move some stuff out of winnt.h into it.
parent
d0a06ec7
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
46 additions
and
18 deletions
+46
-18
dbg.y
debugger/dbg.y
+1
-0
winedbg.c
debugger/winedbg.c
+1
-0
except.c
dlls/msvcrt/except.c
+1
-0
debugtools.c
dlls/ntdll/debugtools.c
+1
-0
exception.c
dlls/ntdll/exception.c
+1
-0
sec.c
dlls/ntdll/sec.c
+1
-0
wgl.c
dlls/opengl32/wgl.c
+1
-0
lstr.c
dlls/user/lstr.c
+2
-0
dosvm.c
dlls/winedos/dosvm.c
+1
-0
dos_fs.c
files/dos_fs.c
+1
-0
Makefile.in
include/Makefile.in
+1
-0
excpt.h
include/msvcrt/excpt.h
+24
-0
windows.h
include/windows.h
+1
-1
winnt.h
include/winnt.h
+0
-17
resource.c
loader/resource.c
+1
-0
global.c
memory/global.c
+1
-0
string.c
memory/string.c
+1
-0
virtual.c
memory/virtual.c
+1
-0
snoop.c
relay32/snoop.c
+1
-0
console.c
win32/console.c
+1
-0
except.c
win32/except.c
+1
-0
init.c
win32/init.c
+1
-0
cursoricon.c
windows/cursoricon.c
+1
-0
No files found.
debugger/dbg.y
View file @
73ab649c
...
...
@@ -18,6 +18,7 @@
#include "wine/exception.h"
#include "debugger.h"
#include "expr.h"
#include "msvcrt/excpt.h"
extern FILE * yyin;
...
...
debugger/winedbg.c
View file @
73ab649c
...
...
@@ -16,6 +16,7 @@
#include "wincon.h"
#include "wingdi.h"
#include "winuser.h"
#include "msvcrt/excpt.h"
#include "winreg.h"
...
...
dlls/msvcrt/except.c
View file @
73ab649c
...
...
@@ -16,6 +16,7 @@
#include "msvcrt.h"
#include "msvcrt/setjmp.h"
#include "msvcrt/excpt.h"
#include "wine/debug.h"
...
...
dlls/ntdll/debugtools.c
View file @
73ab649c
...
...
@@ -16,6 +16,7 @@
#include "winnt.h"
#include "ntddk.h"
#include "wtypes.h"
#include "msvcrt/excpt.h"
DECLARE_DEBUG_CHANNEL
(
tid
);
...
...
dlls/ntdll/exception.c
View file @
73ab649c
...
...
@@ -18,6 +18,7 @@
#include "miscemu.h"
#include "wine/server.h"
#include "debugtools.h"
#include "msvcrt/excpt.h"
DEFAULT_DEBUG_CHANNEL
(
seh
);
...
...
dlls/ntdll/sec.c
View file @
73ab649c
...
...
@@ -21,6 +21,7 @@
#include "ntddk.h"
#include "winreg.h"
#include "ntdll_misc.h"
#include "msvcrt/excpt.h"
DEFAULT_DEBUG_CHANNEL
(
ntdll
);
...
...
dlls/opengl32/wgl.c
View file @
73ab649c
...
...
@@ -17,6 +17,7 @@
#include "wine_gl.h"
#include "x11drv.h"
#include "x11font.h"
#include "msvcrt/excpt.h"
#include "wgl.h"
#include "opengl_ext.h"
...
...
dlls/user/lstr.c
View file @
73ab649c
...
...
@@ -22,6 +22,8 @@
#include "wine/winbase16.h"
#include "wine/winuser16.h"
#include "msvcrt/excpt.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
resource
);
...
...
dlls/winedos/dosvm.c
View file @
73ab649c
...
...
@@ -34,6 +34,7 @@
#include "dosvm.h"
#include "stackframe.h"
#include "debugtools.h"
#include "msvcrt/excpt.h"
DEFAULT_DEBUG_CHANNEL
(
int
);
DECLARE_DEBUG_CHANNEL
(
module
);
...
...
files/dos_fs.c
View file @
73ab649c
...
...
@@ -35,6 +35,7 @@
#include "ntddk.h"
#include "options.h"
#include "wine/server.h"
#include "msvcrt/excpt.h"
#include "debugtools.h"
...
...
include/Makefile.in
View file @
73ab649c
...
...
@@ -58,6 +58,7 @@ INSTALLED_INCLUDES = \
msvcrt/direct.h
\
msvcrt/dos.h
\
msvcrt/eh.h
\
msvcrt/excpt.h
\
msvcrt/fcntl.h
\
msvcrt/io.h
\
msvcrt/locale.h
\
...
...
include/msvcrt/excpt.h
0 → 100644
View file @
73ab649c
#ifndef __WINE_EXCPT_H
#define __WINE_EXCPT_H
/*
* Return values from the actual exception handlers
*/
typedef
enum
_EXCEPTION_DISPOSITION
{
ExceptionContinueExecution
,
ExceptionContinueSearch
,
ExceptionNestedException
,
ExceptionCollidedUnwind
}
EXCEPTION_DISPOSITION
;
/*
* Return values from filters in except() and from UnhandledExceptionFilter
*/
#define EXCEPTION_EXECUTE_HANDLER 1
#define EXCEPTION_CONTINUE_SEARCH 0
#define EXCEPTION_CONTINUE_EXECUTION -1
#endif
/* __WINE_EXCPT_H */
include/windows.h
View file @
73ab649c
...
...
@@ -10,7 +10,7 @@
#else
/* RC_INVOKED && !NOWINRES */
/* All the basic includes */
/* #include "excpt.h" */
#include "msvcrt/excpt.h"
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
...
...
include/winnt.h
View file @
73ab649c
...
...
@@ -2220,23 +2220,6 @@ __DEFINE_SET_SEG(gs)
/*
* Return values from the actual exception handlers
*/
#define ExceptionContinueExecution 0
#define ExceptionContinueSearch 1
#define ExceptionNestedException 2
#define ExceptionCollidedUnwind 3
/*
* Return values from filters in except() and from UnhandledExceptionFilter
*/
#define EXCEPTION_EXECUTE_HANDLER 1
#define EXCEPTION_CONTINUE_SEARCH 0
#define EXCEPTION_CONTINUE_EXECUTION -1
/*
* From OS/2 2.0 exception handling
* Win32 seems to use the same flags as ExceptionFlags in an EXCEPTION_RECORD
*/
...
...
loader/resource.c
View file @
73ab649c
...
...
@@ -23,6 +23,7 @@
#include "debugtools.h"
#include "winerror.h"
#include "winnls.h"
#include "msvcrt/excpt.h"
DEFAULT_DEBUG_CHANNEL
(
resource
);
...
...
memory/global.c
View file @
73ab649c
...
...
@@ -25,6 +25,7 @@
#include "module.h"
#include "debugtools.h"
#include "winerror.h"
#include "msvcrt/excpt.h"
DEFAULT_DEBUG_CHANNEL
(
global
);
...
...
memory/string.c
View file @
73ab649c
...
...
@@ -15,6 +15,7 @@
#include "wine/unicode.h"
#include "winerror.h"
#include "winnls.h"
#include "msvcrt/excpt.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
string
);
...
...
memory/virtual.c
View file @
73ab649c
...
...
@@ -30,6 +30,7 @@
#include "file.h"
#include "global.h"
#include "wine/server.h"
#include "msvcrt/excpt.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
virtual
);
...
...
relay32/snoop.c
View file @
73ab649c
...
...
@@ -15,6 +15,7 @@
#include "stackframe.h"
#include "debugtools.h"
#include "wine/exception.h"
#include "msvcrt/excpt.h"
DEFAULT_DEBUG_CHANNEL
(
snoop
);
...
...
win32/console.c
View file @
73ab649c
...
...
@@ -29,6 +29,7 @@
#include "wine/exception.h"
#include "debugtools.h"
#include "options.h"
#include "msvcrt/excpt.h"
DEFAULT_DEBUG_CHANNEL
(
console
);
...
...
win32/except.c
View file @
73ab649c
...
...
@@ -33,6 +33,7 @@
#include "stackframe.h"
#include "wine/server.h"
#include "debugtools.h"
#include "msvcrt/excpt.h"
DEFAULT_DEBUG_CHANNEL
(
seh
);
...
...
win32/init.c
View file @
73ab649c
...
...
@@ -14,6 +14,7 @@
#include "winbase.h"
#include "winerror.h"
#include "wine/exception.h"
#include "msvcrt/excpt.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
win32
);
...
...
windows/cursoricon.c
View file @
73ab649c
...
...
@@ -46,6 +46,7 @@
#include "input.h"
#include "message.h"
#include "winerror.h"
#include "msvcrt/excpt.h"
DECLARE_DEBUG_CHANNEL
(
cursor
);
DECLARE_DEBUG_CHANNEL
(
icon
);
...
...
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