Alexandre Julliard : msvcrtd: Explicitly specify CDECL calling convention on exported functions.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Jun 13 05:58:31 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 6444876da26c2d17f284073d6c089afa3d889bf2
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=6444876da26c2d17f284073d6c089afa3d889bf2

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Jun 12 21:35:40 2006 +0200

msvcrtd: Explicitly specify CDECL calling convention on exported functions.

---

 dlls/msvcrtd/debug.c |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/dlls/msvcrtd/debug.c b/dlls/msvcrtd/debug.c
index c8aab34..0472058 100644
--- a/dlls/msvcrtd/debug.c
+++ b/dlls/msvcrtd/debug.c
@@ -36,7 +36,7 @@ extern int _callnewh(unsigned long);
 /*********************************************************************
  *		??2 at 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, in
 /*********************************************************************
  *		_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 
 /*********************************************************************
  *		_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;
 }




More information about the wine-cvs mailing list