More reorganizations
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40330
This commit is contained in:
parent
8a46219d96
commit
cc977859d6
@ -294,7 +294,7 @@
|
|||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\sm_platform.h"
|
RelativePath="..\..\public\sm_platform.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
@ -326,15 +326,43 @@
|
|||||||
Name="Interfaces"
|
Name="Interfaces"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\interfaces\IRootConsoleMenu.h"
|
RelativePath="..\..\public\IExtensionSys.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\interfaces\ISourceMod.h"
|
RelativePath="..\..\public\IForwardSys.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\interfaces\ITextParsers.h"
|
RelativePath="..\..\public\IHandleSys.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\public\ILibrarySys.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\public\IPluginFunction.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\public\IPluginSys.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\public\IRootConsoleMenu.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\public\IShareSys.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\public\ISourceMod.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\public\ITextParsers.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
@ -413,38 +441,6 @@
|
|||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
|
||||||
Name="Interfaces"
|
|
||||||
>
|
|
||||||
<File
|
|
||||||
RelativePath="..\interfaces\IExtensionSys.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\interfaces\IForwardSys.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\interfaces\IHandleSys.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\interfaces\ILibrarySys.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\interfaces\IPluginFunction.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\interfaces\IPluginSys.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\interfaces\IShareSys.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
</Filter>
|
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="SourcePawn"
|
Name="SourcePawn"
|
||||||
|
@ -1,39 +0,0 @@
|
|||||||
#ifndef _INCLUDE_SOURCEMOD_PLATFORM_H_
|
|
||||||
#define _INCLUDE_SOURCEMOD_PLATFORM_H_
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @file Contains platform-specific macros for abstraction.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#if defined WIN32 || defined WIN64
|
|
||||||
#define PLATFORM_WINDOWS
|
|
||||||
#if !defined WIN32_LEAN_AND_MEAN
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
|
||||||
#endif
|
|
||||||
#if !defined snprintf
|
|
||||||
#define snprintf _snprintf
|
|
||||||
#endif
|
|
||||||
#if !defined stat
|
|
||||||
#define stat _stat
|
|
||||||
#endif
|
|
||||||
#define strcasecmp strcmpi
|
|
||||||
#include <windows.h>
|
|
||||||
#include <direct.h>
|
|
||||||
#define PLATFORM_LIB_EXT "dll"
|
|
||||||
#define PLATFORM_MAX_PATH MAX_PATH
|
|
||||||
#define PLATFORM_SEP_CHAR '\\'
|
|
||||||
#define PLATFORM_SEP_ALTCHAR '/'
|
|
||||||
#define PLATFORM_EXTERN_C extern "C" __declspec(dllexport)
|
|
||||||
#else if defined __linux__
|
|
||||||
#define PLATFORM_LINUX
|
|
||||||
#define PLATFORM_POSIX
|
|
||||||
#include <dirent.h>
|
|
||||||
#include <errno.h>
|
|
||||||
#define PLATFORM_MAX_PATH PATH_MAX
|
|
||||||
#define PLATFORM_LIB_EXT "so"
|
|
||||||
#define PLATFORM_SEP_CHAR '/'
|
|
||||||
#define PLATFORM_SEP_ALTCHAR '\\'
|
|
||||||
#define PLATFORM_EXTERN_C extern "C" __attribute__((visibility("default")))
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif //_INCLUDE_SOURCEMOD_PLATFORM_H_
|
|
Loading…
Reference in New Issue
Block a user