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.
28 lines
832 B
28 lines
832 B
5 years ago
|
//========= 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;
|
||
|
}
|
||
|
|
||
|
//----------------------------------------------------------------------------------------
|