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.

22 lines
608 B

  1. /***
  2. *wildcard.c - define the CRT internal variable _dowildcard
  3. *
  4. * Copyright (c) 1994-2001, 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. *Revision History:
  11. * 03-04-94 SKS Initial version
  12. * 04-30-01 BWT Remove _NTSDK
  13. *
  14. *******************************************************************************/
  15. #if !defined(_POSIX_) && defined(CRTDLL)
  16. #include <internal.h>
  17. int _dowildcard = 0; /* should be in <internal.h> */
  18. #endif /* !_NTSDK && CRTDLL && !_POSIX_ */