mirror of https://github.com/tongzx/nt5src
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.
26 lines
678 B
26 lines
678 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: mutexclass.cpp
|
|
//
|
|
// Module: CMSTP.EXE
|
|
//
|
|
// Synopsis: This source file pound includes the mutex class from
|
|
// common\source\mutex.cpp. Please see this file for details.
|
|
//
|
|
// Copyright (c) 1998-1999 Microsoft Corporation
|
|
//
|
|
// Author: quintinb Created Header 08/19/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"
|