mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:13:23 +00:00
[CRT]
_cdecl -> __cdecl svn path=/trunk/; revision=60097
This commit is contained in:
parent
76dd7e5f1d
commit
35c4461605
21 changed files with 35 additions and 35 deletions
|
@ -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;
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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");
|
||||||
|
|
|
@ -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_
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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");
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue