mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
44 lines
540 B
C++
44 lines
540 B
C++
|
|
#ifndef SAMPSRV_MAIN_H
|
|
#define SAMPSRV_MAIN_H
|
|
|
|
// ------------
|
|
// VERSION INFO
|
|
// ------------
|
|
|
|
#define SAMP_VERSION "0.3.7-R2"
|
|
|
|
// ------------
|
|
// OS SPECIFICS
|
|
// ------------
|
|
|
|
#ifdef WIN32
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
#include <time.h>
|
|
#else
|
|
#endif
|
|
|
|
// --------
|
|
// INCLUDES
|
|
// --------
|
|
|
|
// Regular crap
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
// Std
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include "console.h"
|
|
|
|
void logprintf(char* format, ...);
|
|
|
|
#ifdef LINUX
|
|
char* strlwr(char* str);
|
|
#endif
|
|
|
|
#endif // SAMPSRV_MAIN_H
|