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

  1. /***
  2. *wildcard.c - define the CRT internal variable _dowildcard
  3. *
  4. *       Copyright (c) 1994-1997, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *       This variable is not public to users but is defined outside the
  8. *       start-up code (CRTEXE.C) to reduce duplicate definitions.
  9. *
  10. *******************************************************************************/
  11.  
  12. #if defined (CRTDLL)
  13.  
  14. #include <internal.h>
  15.  
  16. int _dowildcard = 0;    /* should be in <internal.h> */
  17.  
  18. #endif  /* defined (CRTDLL) */
  19.