home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / wwincrt0.c < prev    next >
C/C++ Source or Header  |  1998-06-17  |  685b  |  29 lines

  1. /***
  2. *wwincrt0.c - C runtime Windows EXE start-up routine (wchar_t version)
  3. *
  4. *       Copyright (c) 1993-1997, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *       This the actual startup routine for Windows apps using wide
  8. *       characters.  It calls the user's main routine _wWinMain() after
  9. *       performing C Run-Time Library initialization.
  10. *
  11. *******************************************************************************/
  12.  
  13.  
  14. #define WPRFLAG 1
  15.  
  16. #ifndef _UNICODE
  17. #define _UNICODE 1
  18. #endif  /* _UNICODE */
  19.  
  20. #ifndef UNICODE
  21. #define UNICODE 1
  22. #endif  /* UNICODE */
  23.  
  24. #undef _MBCS /* UNICODE not _MBCS */
  25.  
  26. #define _WINMAIN_
  27. #include "crt0.c"
  28.  
  29.