Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
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.
 
 
 
 
 
 

39 lines
949 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef MESSAGEMGR_H
#define MESSAGEMGR_H
#ifdef _WIN32
#pragma once
#endif
#define MSGMGR_VERSION 52314
#define MSGMGR_BROADCAST_PORT 22511
#define MSGMGR_PACKETID_MSG 0
#define MSGMGR_PACKETID_ANNOUNCE_PRESENCE 1 // followed by version # and port
// IMessageMgr provides a simple interface apps can use to generate output. Apps
// on the network can connect to the messagemgr to get its output and display it.
class IMessageMgr
{
public:
virtual bool Init() = 0;
virtual void Term() = 0;
virtual void Print( const char *pMsg ) = 0;
};
// Get the message manager. It's a global singleton so this will always
// return the same value (null if the manager can't initialize).
IMessageMgr* GetMessageMgr();
#endif // MESSAGEMGR_H