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.

33 lines
804 B

  1. /***
  2. *wcrt0.c - C runtime console EXE start-up routine, wchar_t version
  3. *
  4. * Copyright (c) 1993-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * This is the actual startup routine for console apps using wide
  8. * characters. It calls the user's main routine wmain() after
  9. * performing C Run-Time Library initialization.
  10. *
  11. *Revision History:
  12. * 11-19-93 CFW Module created.
  13. * 02-04-94 CFW POSIX? NOT!
  14. *
  15. *******************************************************************************/
  16. #ifndef _POSIX_
  17. #define WPRFLAG 1
  18. #ifndef _UNICODE /* CRT flag */
  19. #define _UNICODE 1
  20. #endif
  21. #ifndef UNICODE /* NT flag */
  22. #define UNICODE 1
  23. #endif
  24. #undef _MBCS /* UNICODE not _MBCS */
  25. #include "crt0.c"
  26. #endif /* _POSIX_ */