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.

28 lines
515 B

  1. //***************************************************************************
  2. //
  3. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  4. //
  5. // StlLock.cpp
  6. //
  7. // Purpose: implements the STL lockit class to avoid linking to msvcprt.dll
  8. //
  9. //***************************************************************************
  10. #include "precomp.h"
  11. #include <stllock.h>
  12. __declspec(dllexport) CCritSec g_cs;
  13. std::_Lockit::_Lockit()
  14. {
  15. g_cs.Enter();
  16. }
  17. std::_Lockit::~_Lockit()
  18. {
  19. g_cs.Leave();
  20. }