summaryrefslogtreecommitdiff
path: root/utils/tfstats/pid.h
blob: dd1cb9dd064e3eefe640b2cd8b649b4023372cff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: interface and implementation of PID.  
//
// $Workfile:     $
// $Date:         $
//
//------------------------------------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#ifndef PID_H
#define PID_H
#ifdef WIN32
#pragma once
#pragma warning(disable:4786)
#endif
typedef unsigned long PID;
#include <map>
extern std::map<int,PID> pidMap;
#endif // PID_H