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.

32 lines
654 B

  1. /*++
  2. Copyright (c) 2000-2001 Microsoft Corporation
  3. MakeIllegalStr.h: Companion file to LegalStr.h
  4. LegalStr and MakeIllegalStr are used to pop/push the legal-ness
  5. of the strXXX routines.
  6. This file has no effect if LegalStr.h has not been included.
  7. #include "LegalStr.h" to re-enable the strXXX routines.
  8. #include "MakeIllegalStr.h" to re-disable the strXXX routines
  9. History:
  10. 03/13/2001 robkenny Created
  11. 03/21/2001 robkenny Only undo effect of LegalStr.h
  12. --*/
  13. #ifndef _STRXXX_ROUTINES_ARE_ILLEGAL_
  14. #ifdef _STRXXX_ROUTINES_FORCE_LEGAL_
  15. #undef _STRXXX_ROUTINES_FORCE_LEGAL_
  16. #include "IllegalStr.h"
  17. #endif
  18. #endif