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:
parent
896d7dc5a9
commit
91c93d773b
@ -25,6 +25,13 @@
|
||||
|
||||
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
|
||||
{
|
||||
public:
|
||||
|
@ -39,6 +39,13 @@
|
||||
#include <ISmmAPI.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
|
||||
{
|
||||
class ISmmAPI;
|
||||
|
@ -28,13 +28,6 @@
|
||||
|
||||
#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,
|
||||
* without needing to include the default headers and all their Half-Life baggage.
|
||||
|
Loading…
x
Reference in New Issue
Block a user