1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-26 19:54:14 +01:00

Relocate META_IFACE enum to ISmmPlugin.h

This commit is contained in:
Kyle Sanderson 2015-01-20 16:24:52 -08:00
parent 896d7dc5a9
commit 91c93d773b
3 changed files with 14 additions and 7 deletions

View File

@ -25,6 +25,13 @@
class ISmmAPI; class ISmmAPI;
// Interface return status, binary-compatible with HL2SDK's IFACE_OK and IFACE_FAILED.
enum
{
META_IFACE_OK = 0,
META_IFACE_FAILED
};
class ISmmPlugin class ISmmPlugin
{ {
public: public:

View File

@ -39,6 +39,13 @@
#include <ISmmAPI.h> #include <ISmmAPI.h>
#include <ISmmPluginExt.h> #include <ISmmPluginExt.h>
// Interface return status, binary-compatible with HL2SDK's IFACE_OK and IFACE_FAILED.
enum
{
META_IFACE_OK = 0,
META_IFACE_FAILED
};
namespace SourceMM namespace SourceMM
{ {
class ISmmAPI; class ISmmAPI;

View File

@ -28,13 +28,6 @@
#include <stddef.h> #include <stddef.h>
// Interface return status, binary-compatible with HL2SDK's IFACE_OK and IFACE_FAILED.
enum
{
META_IFACE_OK = 0,
META_IFACE_FAILED
};
/** /**
* @file ISmmPluginExt.h Provides an alternate method for loading plugins, * @file ISmmPluginExt.h Provides an alternate method for loading plugins,
* without needing to include the default headers and all their Half-Life baggage. * without needing to include the default headers and all their Half-Life baggage.