home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / woutput.c < prev    next >
C/C++ Source or Header  |  1998-06-17  |  616b  |  24 lines

  1. /***
  2. *woutput.c - wprintf style output to a FILE (wchar_t version)
  3. *
  4. *       Copyright (c) 1993-1997, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *       This file defines the symbol UNICODE and then #includes the file
  8. *       "output.c" in order to implement _woutput(), the helper for the
  9. *       wide character versions of *wprintf() family of functions.
  10. *
  11. *******************************************************************************/
  12.  
  13.  
  14. #ifndef _UNICODE
  15. #define _UNICODE 1
  16. #endif  /* _UNICODE */
  17.  
  18. #ifndef UNICODE
  19. #define UNICODE 1
  20. #endif  /* UNICODE */
  21.  
  22. #include "output.c"
  23.  
  24.