Leaked source code of windows server 2003
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.

25 lines
703 B

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: mutexclass.cpp
  4. //
  5. // Module: CMSTP.EXE
  6. //
  7. // Synopsis: This source file pound includes the mutex class from
  8. // common\source\mutex.cpp. Please see this file for details.
  9. //
  10. // Copyright (c) 1998-1999 Microsoft Corporation
  11. //
  12. // Author: quintinb Created Header 08/19/99
  13. //
  14. //+----------------------------------------------------------------------------
  15. #include "cmmaster.h"
  16. #ifndef UNICODE
  17. #define CreateMutexU CreateMutexA
  18. #else
  19. #define CreateMutexU CreateMutexW
  20. #endif
  21. //
  22. // Please see pnpu\common\source for the actual source here.
  23. //
  24. #include "mutex.cpp"