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.
 
 
 
 
 
 

25 lines
579 B

//+----------------------------------------------------------------------------
//
// File: mutexclass.cpp
//
// Module: CMDL32.EXE
//
// Synopsis: Mutex class implementation.
//
// Copyright (c) 1998-1999 Microsoft Corporation
//
// Author: quintinb created Header 08/16/99
//
//+----------------------------------------------------------------------------
#include "cmmaster.h"
#ifndef UNICODE
#define CreateMutexU CreateMutexA
#else
#define CreateMutexU CreateMutexW
#endif
//
// Please see pnpu\common\source for the actual source here.
//
#include "mutex.cpp"