_cdecl -> __cdecl

svn path=/trunk/; revision=60097
This commit is contained in:
Timo Kreuzer 2013-09-14 10:28:30 +00:00
parent 76dd7e5f1d
commit 35c4461605
21 changed files with 35 additions and 35 deletions

View file

@ -10,7 +10,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
_cwprintf(const wchar_t* format, ...) _cwprintf(const wchar_t* format, ...)
{ {
int retval; int retval;

View file

@ -22,13 +22,13 @@
#define min(a,b) (((a) < (b)) ? (a) : (b)) #define min(a,b) (((a) < (b)) ? (a) : (b))
int _cdecl _tstreamout(FILE *stream, const TCHAR *format, va_list argptr); int __cdecl _tstreamout(FILE *stream, const TCHAR *format, va_list argptr);
int int
#if defined(USER32_WSPRINTF) && defined(_M_IX86) #if defined(USER32_WSPRINTF) && defined(_M_IX86)
_stdcall __stdcall
#else #else
_cdecl __cdecl
#endif #endif
_sxprintf( _sxprintf(
TCHAR *buffer, TCHAR *buffer,

View file

@ -8,12 +8,12 @@
#include <stdio.h> #include <stdio.h>
#include <stdarg.h> #include <stdarg.h>
int _cdecl streamout(FILE *stream, const char *format, va_list argptr); int __cdecl streamout(FILE *stream, const char *format, va_list argptr);
int _vscprintf( int
_vscprintf(
const char *format, const char *format,
va_list argptr va_list argptr)
)
{ {
int ret; int ret;
FILE* nulfile = fopen("nul", "w"); FILE* nulfile = fopen("nul", "w");

View file

@ -12,12 +12,12 @@
#include <ntddk.h> #include <ntddk.h>
#endif #endif
int _cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr); int __cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr);
int _vscwprintf( int
_vscwprintf(
const wchar_t *format, const wchar_t *format,
va_list argptr va_list argptr)
)
{ {
int ret; int ret;
#ifndef _LIBCNT_ #ifndef _LIBCNT_

View file

@ -10,7 +10,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
fprintf(FILE *file, const char *format, ...) fprintf(FILE *file, const char *format, ...)
{ {
va_list argptr; va_list argptr;

View file

@ -12,7 +12,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
fprintf_s(FILE* file, const char *format, ...) fprintf_s(FILE* file, const char *format, ...)
{ {
va_list argptr; va_list argptr;

View file

@ -10,7 +10,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
fwprintf(FILE* file, const wchar_t *format, ...) fwprintf(FILE* file, const wchar_t *format, ...)
{ {
va_list argptr; va_list argptr;

View file

@ -12,7 +12,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
fwprintf_s(FILE* file, const wchar_t *format, ...) fwprintf_s(FILE* file, const wchar_t *format, ...)
{ {
va_list valist; va_list valist;

View file

@ -11,7 +11,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
printf(const char *format, ...) printf(const char *format, ...)
{ {
va_list argptr; va_list argptr;

View file

@ -12,7 +12,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
printf_s(const char *format, ...) printf_s(const char *format, ...)
{ {
va_list argptr; va_list argptr;

View file

@ -307,7 +307,7 @@ streamout_wstring(FILE *stream, const wchar_t *string, size_t count)
#endif #endif
int int
_cdecl __cdecl
streamout(FILE *stream, const TCHAR *format, va_list argptr) streamout(FILE *stream, const TCHAR *format, va_list argptr)
{ {
static const TCHAR digits_l[] = _T("0123456789abcdef0x"); static const TCHAR digits_l[] = _T("0123456789abcdef0x");

View file

@ -9,10 +9,10 @@
#include <stdio.h> #include <stdio.h>
#include <stdarg.h> #include <stdarg.h>
int _cdecl streamout(FILE *stream, const char *format, va_list argptr); int __cdecl streamout(FILE *stream, const char *format, va_list argptr);
int int
_cdecl __cdecl
vfprintf(FILE *file, const char *format, va_list argptr) vfprintf(FILE *file, const char *format, va_list argptr)
{ {
int result; int result;

View file

@ -12,10 +12,10 @@
#include <stdarg.h> #include <stdarg.h>
#include <internal/safecrt.h> #include <internal/safecrt.h>
int _cdecl streamout(FILE *stream, const char *format, va_list argptr); int __cdecl streamout(FILE *stream, const char *format, va_list argptr);
int int
_cdecl __cdecl
vfprintf_s(FILE* file, const char *format, va_list argptr) vfprintf_s(FILE* file, const char *format, va_list argptr)
{ {
int result; int result;

View file

@ -9,10 +9,10 @@
#include <stdio.h> #include <stdio.h>
#include <stdarg.h> #include <stdarg.h>
int _cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr); int __cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr);
int int
_cdecl __cdecl
vfwprintf(FILE* file, const wchar_t *format, va_list argptr) vfwprintf(FILE* file, const wchar_t *format, va_list argptr)
{ {
int ret; int ret;

View file

@ -13,10 +13,10 @@
#include <stdarg.h> #include <stdarg.h>
#include <internal/safecrt.h> #include <internal/safecrt.h>
int _cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr); int __cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr);
int int
_cdecl __cdecl
vfwprintf_s(FILE* file, const wchar_t *format, va_list argptr) vfwprintf_s(FILE* file, const wchar_t *format, va_list argptr)
{ {
int ret; int ret;

View file

@ -10,7 +10,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
vprintf(const char *format, va_list argptr) vprintf(const char *format, va_list argptr)
{ {
return vfprintf(stdout, format, argptr); return vfprintf(stdout, format, argptr);

View file

@ -12,7 +12,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
vprintf_s(const char *format, va_list valist) vprintf_s(const char *format, va_list valist)
{ {
return vfprintf_s(stdout,format,valist); return vfprintf_s(stdout,format,valist);

View file

@ -10,7 +10,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
vwprintf(const wchar_t *format, va_list valist) vwprintf(const wchar_t *format, va_list valist)
{ {
return vfwprintf(stdout, format, valist); return vfwprintf(stdout, format, valist);

View file

@ -12,7 +12,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
vwprintf_s(const wchar_t *format, va_list valist) vwprintf_s(const wchar_t *format, va_list valist)
{ {
return vfwprintf_s(stdout, format, valist); return vfwprintf_s(stdout, format, valist);

View file

@ -11,7 +11,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
wprintf(const wchar_t *format, ...) wprintf(const wchar_t *format, ...)
{ {
va_list argptr; va_list argptr;

View file

@ -12,7 +12,7 @@
#include <stdarg.h> #include <stdarg.h>
int int
_cdecl __cdecl
wprintf_s(const wchar_t *format, ...) wprintf_s(const wchar_t *format, ...)
{ {
va_list argptr; va_list argptr;