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.
29 lines
666 B
29 lines
666 B
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef IDEDICATEDEXPORTS_H
|
|
#define IDEDICATEDEXPORTS_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "interface.h"
|
|
#include "appframework/iappsystem.h"
|
|
|
|
|
|
abstract_class IDedicatedExports : public IAppSystem
|
|
{
|
|
public:
|
|
virtual void Sys_Printf( char *text ) = 0;
|
|
virtual void RunServer() = 0;
|
|
virtual bool IsGuiDedicatedServer() = 0;
|
|
};
|
|
|
|
#define VENGINE_DEDICATEDEXPORTS_API_VERSION "VENGINE_DEDICATEDEXPORTS_API_VERSION003"
|
|
|
|
|
|
#endif // IDEDICATEDEXPORTS_H
|