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.

24 lines
579 B

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