mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
28 lines
832 B
C++
28 lines
832 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
//=======================================================================================//
|
|
|
|
#include "sessioninfoheader.h"
|
|
#include "dbg.h"
|
|
|
|
// memdbgon must be the last include file in a .cpp file!!!
|
|
#include "tier0/memdbgon.h"
|
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
bool ReadSessionInfoHeader( const void *pBuf, int nBufSize, SessionInfoHeader_t &outHeader )
|
|
{
|
|
if ( nBufSize < sizeof( SessionInfoHeader_t ) )
|
|
{
|
|
AssertMsg( 0, "Buffer size too small to read session info header" );
|
|
return false;
|
|
}
|
|
|
|
// Read the header
|
|
V_memcpy( &outHeader, pBuf, sizeof( SessionInfoHeader_t ) );
|
|
|
|
return true;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------------------
|