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
6444876d
Commit
6444876d
authored
Jun 12, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrtd: Explicitly specify CDECL calling convention on exported functions.
parent
f278f534
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
debug.c
dlls/msvcrtd/debug.c
+13
-13
No files found.
dlls/msvcrtd/debug.c
View file @
6444876d
...
...
@@ -36,7 +36,7 @@ extern int _callnewh(unsigned long);
/*********************************************************************
* ??2@YAPAXIHPBDH@Z (MSVCRTD.@)
*/
void
*
MSVCRTD_operator_new_dbg
(
void
*
CDECL
MSVCRTD_operator_new_dbg
(
unsigned
long
nSize
,
int
nBlockUse
,
const
char
*
szFileName
,
...
...
@@ -75,7 +75,7 @@ void *MSVCRTD_operator_new_dbg(
/*********************************************************************
* _CrtSetDumpClient (MSVCRTD.@)
*/
void
*
_CrtSetDumpClient
(
void
*
dumpClient
)
void
*
CDECL
_CrtSetDumpClient
(
void
*
dumpClient
)
{
return
NULL
;
}
...
...
@@ -84,7 +84,7 @@ void *_CrtSetDumpClient(void *dumpClient)
/*********************************************************************
* _CrtSetReportHook (MSVCRTD.@)
*/
void
*
_CrtSetReportHook
(
void
*
reportHook
)
void
*
CDECL
_CrtSetReportHook
(
void
*
reportHook
)
{
return
NULL
;
}
...
...
@@ -93,7 +93,7 @@ void *_CrtSetReportHook(void *reportHook)
/*********************************************************************
* _CrtSetReportMode (MSVCRTD.@)
*/
int
_CrtSetReportMode
(
int
reportType
,
int
reportMode
)
int
CDECL
_CrtSetReportMode
(
int
reportType
,
int
reportMode
)
{
return
0
;
}
...
...
@@ -102,7 +102,7 @@ int _CrtSetReportMode(int reportType, int reportMode)
/*********************************************************************
* _CrtSetBreakAlloc (MSVCRTD.@)
*/
int
_CrtSetBreakAlloc
(
int
new
)
int
CDECL
_CrtSetBreakAlloc
(
int
new
)
{
int
old
=
_crtBreakAlloc
;
_crtBreakAlloc
=
new
;
...
...
@@ -112,7 +112,7 @@ int _CrtSetBreakAlloc(int new)
/*********************************************************************
* _CrtSetDbgFlag (MSVCRTD.@)
*/
int
_CrtSetDbgFlag
(
int
new
)
int
CDECL
_CrtSetDbgFlag
(
int
new
)
{
int
old
=
_crtDbgFlag
;
_crtDbgFlag
=
new
;
...
...
@@ -123,8 +123,8 @@ int _CrtSetDbgFlag(int new)
/*********************************************************************
* _CrtDbgReport (MSVCRTD.@)
*/
int
_CrtDbgReport
(
int
reportType
,
const
char
*
filename
,
int
linenumber
,
const
char
*
moduleName
,
const
char
*
format
,
...)
int
CDECL
_CrtDbgReport
(
int
reportType
,
const
char
*
filename
,
int
linenumber
,
const
char
*
moduleName
,
const
char
*
format
,
...)
{
return
0
;
}
...
...
@@ -132,7 +132,7 @@ int _CrtDbgReport(int reportType, const char *filename, int linenumber,
/*********************************************************************
* _CrtDumpMemoryLeaks (MSVCRTD.@)
*/
int
_CrtDumpMemoryLeaks
(
void
)
int
CDECL
_CrtDumpMemoryLeaks
(
void
)
{
return
0
;
}
...
...
@@ -140,7 +140,7 @@ int _CrtDumpMemoryLeaks(void)
/*********************************************************************
* _CrtCheckMemory (MSVCRTD.@)
*/
int
_CrtCheckMemory
(
void
)
int
CDECL
_CrtCheckMemory
(
void
)
{
/* Note: maybe we could call here our heap validating functions ? */
return
TRUE
;
...
...
@@ -150,7 +150,7 @@ int _CrtCheckMemory(void)
/*********************************************************************
* __p__crtAssertBusy (MSVCRTD.@)
*/
int
*
__p__crtAssertBusy
(
void
)
int
*
CDECL
__p__crtAssertBusy
(
void
)
{
return
&
_crtAssertBusy
;
}
...
...
@@ -158,7 +158,7 @@ int *__p__crtAssertBusy(void)
/*********************************************************************
* __p__crtBreakAlloc (MSVCRTD.@)
*/
int
*
__p__crtBreakAlloc
(
void
)
int
*
CDECL
__p__crtBreakAlloc
(
void
)
{
return
&
_crtBreakAlloc
;
}
...
...
@@ -166,7 +166,7 @@ int *__p__crtBreakAlloc(void)
/*********************************************************************
* __p__crtDbgFlag (MSVCRTD.@)
*/
int
*
__p__crtDbgFlag
(
void
)
int
*
CDECL
__p__crtDbgFlag
(
void
)
{
return
&
_crtDbgFlag
;
}
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