21 lines
650 B
C
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
|