Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

21 lines
589 B

/***
*wildcard.c - define the CRT internal variable _dowildcard
*
* Copyright (c) 1994, Microsoft Corporation. All rights reserved.
*
*Purpose:
* This variable is not public to users but is defined outside the
* start-up code (CRTEXE.C) to reduce duplicate definitions.
*
*Revision History:
* 03-04-94 SKS Initial version
*
*******************************************************************************/
#if !defined(_POSIX_) && defined(CRTDLL) && !defined(_NTSDK)
#include <internal.h>
int _dowildcard = 0; /* should be in <internal.h> */
#endif /* !_NTSDK && CRTDLL && !_POSIX_ */