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
7d39c97e
Commit
7d39c97e
authored
Jun 11, 2008
by
Jon Griffiths
Committed by
Alexandre Julliard
Jun 18, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include/msvcrt: Wrap remaining msvcrt headers for C++ compilation.
parent
c5bedbf6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
crtdbg.h
include/msvcrt/crtdbg.h
+8
-0
signal.h
include/msvcrt/signal.h
+8
-0
No files found.
include/msvcrt/crtdbg.h
View file @
7d39c97e
...
...
@@ -77,6 +77,10 @@ typedef struct _CrtMemState
#define _CrtDbgBreak() ((void)0)
#endif
#ifdef __cplusplus
extern
"C"
{
#endif
extern
int
_crtAssertBusy
;
extern
int
_crtBreakAlloc
;
extern
int
_crtDbgFlag
;
...
...
@@ -90,6 +94,10 @@ int _CrtSetDbgFlag(int new);
void
*
_CrtSetDumpClient
(
void
*
dumpClient
);
int
_CrtSetReportMode
(
int
reportType
,
int
reportMode
);
#ifdef __cplusplus
}
#endif
#endif
/* _DEBUG */
#define _CrtDoForAllClientObjects(f,c) ((void)0)
...
...
include/msvcrt/signal.h
View file @
7d39c97e
...
...
@@ -33,6 +33,10 @@
#define NSIG (SIGABRT + 1)
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
void
(
*
__sighandler_t
)(
int
);
#define SIG_DFL ((__sighandler_t)0)
...
...
@@ -42,4 +46,8 @@ typedef void (*__sighandler_t)(int);
__sighandler_t
signal
(
int
sig
,
__sighandler_t
func
);
int
raise
(
int
sig
);
#ifdef __cplusplus
}
#endif
#endif
/* _WINE_SIGNAL_H */
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