#include <IShareSys.h>
Include dependency graph for IBinTools.h:

Go to the source code of this file.
Namespaces | |
| namespace | SourceMod |
Classes | |
| struct | SourceMod::PassInfo |
| Parameter passing information. More... | |
| struct | SourceMod::PassEncode |
| Parameter encoding information. More... | |
| class | SourceMod::ICallWrapper |
| Wraps a C/C++ call. More... | |
| class | SourceMod::IBinTools |
| Binary tools interface. More... | |
Defines | |
| #define | SMINTERFACE_BINTOOLS_NAME "IBinTools" |
| #define | SMINTERFACE_BINTOOLS_VERSION 2 |
| #define | PASSFLAG_BYVAL (1<<0) |
| #define | PASSFLAG_BYREF (1<<1) |
| #define | PASSFLAG_ODTOR (1<<2) |
| #define | PASSFLAG_OCTOR (1<<3) |
| #define | PASSFLAG_OASSIGNOP (1<<4) |
Enumerations | |
| enum | SourceMod::CallConvention { SourceMod::CallConv_ThisCall, SourceMod::CallConv_Cdecl } |
| Supported calling conventions. More... | |
| enum | SourceMod::PassType { SourceMod::PassType_Basic, SourceMod::PassType_Float, SourceMod::PassType_Object } |
| Describes how a parameter should be passed. More... | |
Definition in file IBinTools.h.
| #define SMINTERFACE_BINTOOLS_NAME "IBinTools" |
vim: set ts=4 : ============================================================================= SourceMod BinTools Extension Copyright (C) 2004-2008 AlliedModders LLC. All rights reserved. =============================================================================
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 3.0, as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
As a special exception, AlliedModders LLC gives you permission to link the code of this program (as well as its derivative works) to "Half-Life 2," the "Source Engine," the "SourcePawn JIT," and any Game MODs that run on software by the Valve Corporation. You must obey the GNU General Public License in all respects for all other code used. Additionally, AlliedModders LLC grants this exception to all derivative works. AlliedModders LLC defines further exceptions, found in LICENSE.txt (as of this writing, version JULY-31-2007), or <http://www.sourcemod.net/license.php>.
Version: $Id$
Definition at line 37 of file IBinTools.h.
| #define PASSFLAG_BYVAL (1<<0) |
Passing by value
Definition at line 66 of file IBinTools.h.
| #define PASSFLAG_BYREF (1<<1) |
Passing by reference
Definition at line 67 of file IBinTools.h.
| #define PASSFLAG_ODTOR (1<<2) |
Object has a destructor
Definition at line 68 of file IBinTools.h.
| #define PASSFLAG_OCTOR (1<<3) |
Object has a constructor
Definition at line 69 of file IBinTools.h.
| #define PASSFLAG_OASSIGNOP (1<<4) |
Object has an assignment operator
Definition at line 70 of file IBinTools.h.
1.5.1