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.

30 lines
667 B

  1. /*++
  2. Copyright (c) 2000-2001 Microsoft Corporation
  3. LegalStr.h: Companion file to MakeIllegalStr.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 IllegalStr.h has not been included;
  7. use MakeIllegalStr.h to undo the effects of this file.
  8. #include "LegalStr.h" to re-enable the strXXX routines.
  9. #include "MakeIllegalStr.h" to re-disable the strXXX routines
  10. History:
  11. 03/13/2001 robkenny Created
  12. 03/21/2001 robkenny Only undo effect of LegalStr.h
  13. --*/
  14. #ifdef _STRXXX_ROUTINES_ARE_ILLEGAL_
  15. #define _STRXXX_ROUTINES_FORCE_LEGAL_
  16. #include "IllegalStr.h"
  17. #endif