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
16e5634a
Commit
16e5634a
authored
Jan 13, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented a few more crt* functions.
Replaced most remaining stubs by forwards to msvcrt.
parent
c0faca07
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
2 deletions
+42
-2
debug.c
dlls/msvcrtd/debug.c
+42
-2
msvcrtd.spec
dlls/msvcrtd/msvcrtd.spec
+0
-0
No files found.
dlls/msvcrtd/debug.c
View file @
16e5634a
...
...
@@ -22,6 +22,10 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
int
_crtAssertBusy
=
-
1
;
int
_crtBreakAlloc
=
-
1
;
int
_crtDbgFlag
=
0
;
/*********************************************************************
* _CrtSetDumpClient (MSVCRTD.@)
*/
...
...
@@ -50,11 +54,23 @@ int _CrtSetReportMode()
/*********************************************************************
* _CrtSetBreakAlloc (MSVCRTD.@)
*/
int
_CrtSetBreakAlloc
(
int
new
)
{
int
old
=
_crtBreakAlloc
;
_crtBreakAlloc
=
new
;
return
old
;
}
/*********************************************************************
* _CrtSetDbgFlag (MSVCRTD.@)
*/
int
_CrtSetDbgFlag
()
int
_CrtSetDbgFlag
(
int
new
)
{
return
0
;
int
old
=
_crtDbgFlag
;
_crtDbgFlag
=
new
;
return
old
;
}
...
...
@@ -73,3 +89,27 @@ int _CrtDumpMemoryLeaks()
{
return
0
;
}
/*********************************************************************
* __p__crtAssertBusy (MSVCRTD.@)
*/
int
*
__p__crtAssertBusy
(
void
)
{
return
&
_crtAssertBusy
;
}
/*********************************************************************
* __p__crtBreakAlloc (MSVCRTD.@)
*/
int
*
__p__crtBreakAlloc
(
void
)
{
return
&
_crtBreakAlloc
;
}
/*********************************************************************
* __p__crtDbgFlag (MSVCRTD.@)
*/
int
*
__p__crtDbgFlag
(
void
)
{
return
&
_crtDbgFlag
;
}
dlls/msvcrtd/msvcrtd.spec
View file @
16e5634a
This diff is collapsed.
Click to expand it.
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