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.

29 lines
571 B

  1. /***
  2. *wtempnam.c - generate unique file name (wchar_t version)
  3. *
  4. * Copyright (c) 1986-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *
  8. *Revision History:
  9. * 12-07-93 CFW Module created.
  10. * 02-07-94 CFW POSIXify.
  11. * 02-21-95 GJF Deleted obsolete WPRFLAG.
  12. *
  13. *******************************************************************************/
  14. #ifndef _POSIX_
  15. #ifndef _UNICODE /* CRT flag */
  16. #define _UNICODE 1
  17. #endif
  18. #ifndef UNICODE /* NT flag */
  19. #define UNICODE 1
  20. #endif
  21. #undef _MBCS /* UNICODE not _MBCS */
  22. #include "tempnam.c"
  23. #endif /* _POSIX_ */