mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-21 01:27:14 +02:00
Dumped the old implementation. Started with a more simple approach.
This commit is contained in:
bin
cbp
config
external
Common
CppFormat
Hash
crc32.cppcrc32.hdigest.cppendian.hhash.hhash_license.txthmac.hkeccak.cppkeccak.hmd5.cppmd5.hsha1.cppsha1.hsha256.cppsha256.hsha3.cppsha3.h
IRC
PUGIXML
RapidJSON
SQLite
SimpleINI
Squirrel
include
ConvertUTF.h
RandomLib
Config.hDiscreteNormal.hppDiscreteNormalAlt.hppExactExponential.hppExactNormal.hppExactPower.hppExponentialDistribution.hppExponentialProb.hppInverseEProb.hppInversePiProb.hppLeadingZeros.hppMPFRExponential.hppMPFRExponentialL.hppMPFRNormal.hppMPFRNormalK.hppMPFRNormalR.hppMPFRRandom.hppMPFRUniform.hppNormalDistribution.hppRandom.hppRandomAlgorithm.hppRandomCanonical.hppRandomEngine.hppRandomMixer.hppRandomNumber.hppRandomPower2.hppRandomSeed.hppRandomSelect.hppRandomType.hppUniformInteger.hpp
SimpleIni.hformat.hlibirc_errors.hlibirc_events.hlibirc_options.hlibirc_rfcnumeric.hlibircclient.hpugixml.hpprapidjson
allocators.hdocument.hencodedstream.hencodings.h
sqlite3.hsquirrel.herror
filereadstream.hfilewritestream.hinternal
memorybuffer.hmemorystream.hmsinttypes
pointer.hprettywriter.hrapidjson.hreader.hstringbuffer.hwriter.hsource
Base
AABB.cppAABB.hppBuffer.cppBuffer.hppCircle.cppCircle.hppColor3.cppColor3.hppColor4.cppColor4.hppQuaternion.cppQuaternion.hppRandom.cppShared.cppShared.hppSphere.cppSphere.hppVector2.cppVector2.hppVector2f.cppVector2i.cppVector2i.hppVector2u.cppVector2u.hppVector3.cppVector3.hppVector4.cppVector4.hpp
Command.cppCommand.hppCommon.hppConstants.cppCore.cppCore.hppDebug.cppDebug.hppEntity.cppEntity.hppEntity
Blip.cppBlip.hppCheckpoint.cppCheckpoint.hppForcefield.cppForcefield.hppKeybind.cppKeybind.hppObject.cppObject.hppPickup.cppPickup.hppPlayer.cppPlayer.hppSphere.cppSphere.hppSprite.cppSprite.hppTextdraw.cppTextdraw.hppVehicle.cppVehicle.hpp
Event
Iterators.cppIterators.hppLibrary
Datetime.cppDatetime.hppFileIO.cppFileIO.hppFormat.cppFormat.hppHashing.cppHashing.hppINI.cppINI.hppIRC.cppIRC.hppJSON.cppJSON.hppLongInt.cppLongInt.hppMath.cppMath.hppNumeric.cppNumeric.hppRandom.cppRandom.hpp
Logger.cppLogger.hppMain.cppMisc.cppSQLite
Shared.cppShared.hppString.cppString.hppSysPath.cppSysPath.hppSystem.cppSystem.hppTimer.cppTimer.hppUtils.cppUtils.hppXML.cppXML.hppMisc
Automobile.cppAutomobile.hppConstants.cppFunctions.cppFunctions.hppModel.cppModel.hppPlayer.cppPlayer.hppPlayerImmunity.cppPlayerImmunity.hppRadio.cppRadio.hppRegister.cppShared.cppShared.hppSkin.cppSkin.hppSound.cppSound.hppVehicle.cppVehicle.hppVehicleImmunity.cppVehicleImmunity.hppWastedSettings.cppWastedSettings.hppWeapon.cppWeapon.hppWorld.cppWorld.hppWorldBounds.cppWorldBounds.hpp
Register.cppRegister.hppSignal.hppSqBase.hppUtility
@ -1,74 +0,0 @@
|
||||
/**
|
||||
* pugixml parser - version 1.7
|
||||
* --------------------------------------------------------
|
||||
* Copyright (C) 2006-2015, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||
* Report bugs and download new versions at http://pugixml.org/
|
||||
*
|
||||
* This library is distributed under the MIT License. See notice at the end
|
||||
* of this file.
|
||||
*
|
||||
* This work is based on the pugxml parser, which is:
|
||||
* Copyright (C) 2003, by Kristen Wegner (kristen@tima.net)
|
||||
*/
|
||||
|
||||
#ifndef HEADER_PUGICONFIG_HPP
|
||||
#define HEADER_PUGICONFIG_HPP
|
||||
|
||||
// Uncomment this to enable wchar_t mode
|
||||
// #define PUGIXML_WCHAR_MODE
|
||||
|
||||
// Uncomment this to enable compact mode
|
||||
// #define PUGIXML_COMPACT
|
||||
|
||||
// Uncomment this to disable XPath
|
||||
// #define PUGIXML_NO_XPATH
|
||||
|
||||
// Uncomment this to disable STL
|
||||
// #define PUGIXML_NO_STL
|
||||
|
||||
// Uncomment this to disable exceptions
|
||||
// #define PUGIXML_NO_EXCEPTIONS
|
||||
|
||||
// Set this to control attributes for public classes/functions, i.e.:
|
||||
// #define PUGIXML_API __declspec(dllexport) // to export all public symbols from DLL
|
||||
// #define PUGIXML_CLASS __declspec(dllimport) // to import all classes from DLL
|
||||
// #define PUGIXML_FUNCTION __fastcall // to set calling conventions to all public functions to fastcall
|
||||
// In absence of PUGIXML_CLASS/PUGIXML_FUNCTION definitions PUGIXML_API is used instead
|
||||
|
||||
// Tune these constants to adjust memory-related behavior
|
||||
// #define PUGIXML_MEMORY_PAGE_SIZE 32768
|
||||
// #define PUGIXML_MEMORY_OUTPUT_STACK 10240
|
||||
// #define PUGIXML_MEMORY_XPATH_PAGE_SIZE 4096
|
||||
|
||||
// Uncomment this to switch to header-only version
|
||||
// #define PUGIXML_HEADER_ONLY
|
||||
|
||||
// Uncomment this to enable long long support
|
||||
// #define PUGIXML_HAS_LONG_LONG
|
||||
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Copyright (c) 2006-2015 Arseny Kapoulkine
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person
|
||||
* obtaining a copy of this software and associated documentation
|
||||
* files (the "Software"), to deal in the Software without
|
||||
* restriction, including without limitation the rights to use,
|
||||
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following
|
||||
* conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be
|
||||
* included in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
* OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
Reference in New Issue
Block a user