This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/common/platform.h

21 lines
650 B
C

//=======================================================================
// Copyright XashXT Group 2007 ©
// platform.h - game platform dll
//=======================================================================
#ifndef BASEPLATFORM_H
#define BASEPLATFORM_H
#include <stdio.h>
#include <setjmp.h>
#include <windows.h>
#include "basetypes.h"
//=====================================
// platform export
//=====================================
void InitPlatform ( uint funcname, int argc, char **argv ); // init host
void RunPlatform ( void ); // host frame
void ClosePlatform ( void ); // close host
#endif//BASEPLATFORM_H