Changeset 21506 for trunk/src/msvcrt/file.c
- Timestamp:
- Dec 3, 2010, 6:09:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/msvcrt/file.c
r21402 r21506 2466 2466 } 2467 2467 2468 #endif /* !__MINIVCRT__ */ 2469 2468 2470 /********************************************************************* 2469 2471 * vfwprintf (MSVCRT.@) … … 2472 2474 * (then we must test for equality too)? 2473 2475 */ 2474 int MSVCRT _vfwprintf(MSVCRT_FILE* file, const MSVCRT_wchar_t *format, va_list valist)2476 int MSVCRT(vfwprintf)(MSVCRT_FILE* file, const MSVCRT_wchar_t *format, va_list valist) 2475 2477 { 2476 2478 MSVCRT_wchar_t buf[2048], *mem = buf; … … 2492 2494 } 2493 2495 2496 #ifndef __MINIVCRT__ 2497 2494 2498 /********************************************************************* 2495 2499 * vprintf (MSVCRT.@) … … 2500 2504 } 2501 2505 2506 #endif /* !__MINIVCRT__ */ 2507 2502 2508 /********************************************************************* 2503 2509 * vwprintf (MSVCRT.@) 2504 2510 */ 2505 int MSVCRT_vwprintf(const MSVCRT_wchar_t *format, va_list valist) 2506 { 2507 return MSVCRT_vfwprintf(MSVCRT_stdout,format,valist); 2508 } 2511 int MSVCRT(vwprintf)(const MSVCRT_wchar_t *format, va_list valist) 2512 { 2513 return MSVCRT(vfwprintf)(MSVCRT_stdout,format,valist); 2514 } 2515 2516 #ifndef __MINIVCRT__ 2509 2517 2510 2518 /********************************************************************* … … 2521 2529 } 2522 2530 2531 #endif /* !__MINIVCRT__ */ 2532 2523 2533 /********************************************************************* 2524 2534 * fwprintf (MSVCRT.@) 2525 2535 */ 2526 int MSVCRT _fwprintf(MSVCRT_FILE* file, const MSVCRT_wchar_t *format, ...)2536 int MSVCRT(fwprintf)(MSVCRT_FILE* file, const MSVCRT_wchar_t *format, ...) 2527 2537 { 2528 2538 va_list valist; 2529 2539 int res; 2530 2540 va_start(valist, format); 2531 res = MSVCRT _vfwprintf(file, format, valist);2541 res = MSVCRT(vfwprintf)(file, format, valist); 2532 2542 va_end(valist); 2533 2543 return res; 2534 2544 } 2545 2546 #ifndef __MINIVCRT__ 2535 2547 2536 2548 /*********************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.