Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
565 B

  1. /***
  2. *cwprintf.c - Conio version of wprintf
  3. *
  4. * Copyright (c) 1991-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * Perform formatted i/o directly to the console.
  8. *
  9. *Revision History:
  10. * 02-11-00 GB Stub module created.
  11. *
  12. *******************************************************************************/
  13. #ifndef _POSIX_
  14. #ifndef _UNICODE /* CRT flag */
  15. #define _UNICODE 1
  16. #endif
  17. #ifndef UNICODE /* NT flag */
  18. #define UNICODE 1
  19. #endif
  20. #define CPRFLAG 1
  21. #include "output.c"
  22. #endif /* _POSIX_ */