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
25 lines
595 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: mutexclass.cpp
|
|
//
|
|
// Module: PBASETUP.EXE
|
|
//
|
|
// Synopsis: Mutex Class Implementation
|
|
//
|
|
// Copyright (c) 1999 Microsoft Corporation
|
|
//
|
|
// Author: v-vijayb Created 06/10/99
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
#include "pbamaster.h"
|
|
|
|
#ifndef UNICODE
|
|
#define CreateMutexU CreateMutexA
|
|
#else
|
|
#define CreateMutexU CreateMutexW
|
|
#endif
|
|
|
|
//
|
|
// Please see pnpu\common\source for the actual source here.
|
|
//
|
|
#include "mutex.cpp"
|