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.

31 lines
609 B

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