halflife-thewastes-sdk/dedicated/sys_ded.h

14 lines
356 B
C
Raw Normal View History

2000-06-05 00:00:00 +00:00
#if !defined( SYS_DEDH )
#define SYS_DEDH
#ifdef _WIN32
#pragma once
#endif
long Sys_LoadLibrary( char *lib );
void Sys_FreeLibrary( long library );
void *Sys_GetProcAddress( long library, const char *name );
void Sys_Sleep( int msec );
void Sys_Printf(char *fmt, ...);
void Sys_ErrorMessage( int level, const char *msg );
#endif // SYS_DEDH