Source code of Windows XP (NT5)
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.

30 lines
729 B

  1. /***
  2. *winput.c - wscanf style input from a FILE (wchar_t version)
  3. *
  4. * Copyright (c) 1991-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * This file defines the symbol UNICODE and then #includes the file
  8. * "input.c" in order to implement _winput(), the helper for the
  9. * wide character versions of the *wscanf() family of functions.
  10. *
  11. *Revision History:
  12. * 04-27-93 CFW Module created.
  13. * 02-07-94 CFW POSIXify.
  14. * 02-22-95 GJF Removed obsolete WPRFLAG.
  15. *
  16. *******************************************************************************/
  17. #ifndef _POSIX_
  18. #ifndef _UNICODE /* CRT flag */
  19. #define _UNICODE 1
  20. #endif
  21. #ifndef UNICODE /* NT flag */
  22. #define UNICODE 1
  23. #endif
  24. #include "input.c"
  25. #endif /* _POSIX_ */