windows-nt/Source/XPSP1/NT/windows/appcompat/shims/inc/makeillegalstr.h

33 lines
654 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
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