/**
*
*
* Reads the INI and also exports a number of functions to other "classes" for
* easy reading of data files there.
*
* 1.5
*
*
* Stock
*
* Loads an INI file using standard features.
* Loads a file as an ini and distributes data.
* Gets the name of an INI item.
* Gets the value of an INI item.
* Opens an INI for writing.
* Closes an INI being written to.
* Sets a subheading in an INI fo subsequent writes.
* Writes a string to an INI.
* Writes an int to an INI.
* Writes a float to an INI.
* Writes a hex to an INI.
* Writes a binary to an INI.
* Writes a boolean to an INI.
* Remove an entry from a file.
*
* Static
*
* Writes an INI's buffer to the file.
* Adds a string to an INI buffer.
*
* Inline
*
* Parse an integer INI entry.
* Parse a float INI entry.
* Parse a hex INI entry.
* Parse a binary INI entry.
* Parse a binary INI entry.
* Parse a string INI entry.
*
* Maximum length of an INI tagname.
* Maximum length of an INI entry name.
* Maximum length of an INI's entries' value.
* Maximum length of a line in a file.
* String for new lines.
* Maximum concurrent files open for writing.
* Number of tags the buffer can hold data for at once.
*
* Storage for entries to be written.
* Data for tags with data.
*
* Header for ini parsing functions.
*
* Handle to an INI file being written to.
*
*
* Static
*
* Basic data to be written.
* Next slot to write to.
* Next slot to add a tag to.
* Pointer to the tag been writen to.
* Data for tags,
* Current files been written to.
*
*
*//** *//*
Legal:
Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 the "License"; you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
The Original Code is the YSI framework.
The Initial Developer of the Original Code is Alex "Y_Less" Cole.
Portions created by the Initial Developer are Copyright C 2011
the Initial Developer. All Rights Reserved.
Contributors:
Y_Less
koolk
JoeBullet/Google63
g_aSlice/Slice
Misiur
samphunter
tianmeta
maddinat0r
spacemud
Crayder
Dayvison
Ahmad45123
Zeex
irinel1996
Yiin-
Chaprnks
Konstantinos
Masterchen09
Southclaws
PatchwerkQWER
m0k1
paulommu
udan111
Thanks:
JoeBullet/Google63 - Handy arbitrary ASM jump code using SCTRL.
ZeeX - Very productive conversations.
koolk - IsPlayerinAreaEx code.
TheAlpha - Danish translation.
breadfish - German translation.
Fireburn - Dutch translation.
yom - French translation.
50p - Polish translation.
Zamaroht - Spanish translation.
Los - Portuguese translation.
Dracoblue, sintax, mabako, Xtreme, other coders - Producing other modes for
me to strive to better.
Pixels^ - Running XScripters where the idea was born.
Matite - Pestering me to release it and using it.
Very special thanks to:
Thiadmer - PAWN, whose limits continue to amaze me!
Kye/Kalcor - SA:MP.
SA:MP Team past, present and future - SA:MP.
Optional plugins:
Gamer_Z - GPS.
Incognito - Streamer.
Me - sscanf2, fixes2, Whirlpool.
*/
#if !defined _INC_y_ini
#tryinclude "y_ini\y_ini_entry"
#endif
#if !defined _INC_y_ini
#tryinclude "YSI_Storage\y_ini\y_ini_entry"
#endif
#if !defined _INC_y_ini
#tryinclude "YSI\YSI_Storage\y_ini\y_ini_entry"
#endif
#if !defined _INC_y_ini
#tryinclude
#endif
#if !defined _INC_y_ini
#tryinclude
#endif
#if !defined _INC_y_ini
#error Could not find y_ini
#endif