33 lines
654 B
C
33 lines
654 B
C
/*++
|
|
|
|
Copyright (c) 2000-2001 Microsoft Corporation
|
|
|
|
MakeIllegalStr.h: Companion file to LegalStr.h
|
|
|
|
LegalStr and MakeIllegalStr are used to pop/push the legal-ness
|
|
of the strXXX routines.
|
|
|
|
This file has no effect if LegalStr.h has not been included.
|
|
|
|
#include "LegalStr.h" to re-enable the strXXX routines.
|
|
#include "MakeIllegalStr.h" to re-disable the strXXX routines
|
|
|
|
|
|
History:
|
|
|
|
03/13/2001 robkenny Created
|
|
03/21/2001 robkenny Only undo effect of LegalStr.h
|
|
|
|
--*/
|
|
|
|
#ifndef _STRXXX_ROUTINES_ARE_ILLEGAL_
|
|
|
|
#ifdef _STRXXX_ROUTINES_FORCE_LEGAL_
|
|
|
|
#undef _STRXXX_ROUTINES_FORCE_LEGAL_
|
|
#include "IllegalStr.h"
|
|
|
|
#endif
|
|
|
|
#endif
|