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
595 B

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: mutexclass.cpp
  4. //
  5. // Module: PBASETUP.EXE
  6. //
  7. // Synopsis: Mutex Class Implementation
  8. //
  9. // Copyright (c) 1999 Microsoft Corporation
  10. //
  11. // Author: v-vijayb Created 06/10/99
  12. //
  13. //+----------------------------------------------------------------------------
  14. #include "pbamaster.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"