| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- SA-MP GVar Plugin v1.3
- Copyright © 2010 Incognito
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- 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/>.
- */
- #if defined _gvar_included
- #endinput
- #endif
- #define _gvar_included
- // Definitions
- #define GLOBAL_VARTYPE_NONE (0)
- #define GLOBAL_VARTYPE_INT (1)
- #define GLOBAL_VARTYPE_STRING (2)
- #define GLOBAL_VARTYPE_FLOAT (3)
- // Natives
- native SetGVarInt(const name[], value, id = 0);
- native GetGVarInt(const name[], id = 0);
- native SetGVarString(const name[], const value[], id = 0);
- native GetGVarString(const name[], dest[], maxlength = sizeof dest, id = 0);
- native SetGVarFloat(const name[], Float:value, id = 0);
- native Float:GetGVarFloat(const name[], id = 0);
- native DeleteGVar(const name[], id = 0);
- native GetGVarsUpperIndex(id = 0);
- native GetGVarNameAtIndex(index, dest[], maxlength = sizeof dest, id = 0);
- native GetGVarType(const name[], id = 0);
|