Fixed tabs, hopefully...

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40481
This commit is contained in:
Scott Ehlert 2007-02-12 09:00:55 +00:00
parent afd3d3dc88
commit 6cff249b5c
13 changed files with 250 additions and 240 deletions

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================
@ -38,4 +39,3 @@ struct Extension
#define AUTOLOAD_EXTENSIONS #define AUTOLOAD_EXTENSIONS
#define REQUIRE_EXTENSIONS #define REQUIRE_EXTENSIONS

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================
@ -70,4 +71,3 @@ public Extension:__ext_geoip =
required = 0, required = 0,
#endif #endif
}; };

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================
@ -64,4 +65,3 @@ native bool:CloseHandle(Handle:hndl);
* @error Invalid handles will cause a run time error. * @error Invalid handles will cause a run time error.
*/ */
native Handle:CloneHandle(Handle:hndl, Handle:plugin=INVALID_HANDLE); native Handle:CloneHandle(Handle:hndl, Handle:plugin=INVALID_HANDLE);

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================
@ -26,25 +27,25 @@
enum SMCResult enum SMCResult
{ {
SMCParse_Continue, //continue parsing SMCParse_Continue, /**< Continue parsing */
SMCParse_Halt, //stop parsing here SMCParse_Halt, /**< Stop parsing here */
SMCParse_HaltFail //stop parsing and return failure SMCParse_HaltFail /**< Stop parsing and return failure */
}; };
enum SMCError enum SMCError
{ {
SMCError_Okay = 0, //no error SMCError_Okay = 0, /**< No error */
SMCError_StreamOpen, //stream failed to open SMCError_StreamOpen, /**< Stream failed to open */
SMCError_StreamError, //the stream died... somehow SMCError_StreamError, /**< The stream died... somehow */
SMCError_Custom, //a custom handler threw an error SMCError_Custom, /**< A custom handler threw an error */
SMCError_InvalidSection1, //a section was declared without quotes, and had extra tokens SMCError_InvalidSection1, /**< A section was declared without quotes, and had extra tokens */
SMCError_InvalidSection2, //a section was declared without any header SMCError_InvalidSection2, /**< A section was declared without any header */
SMCError_InvalidSection3, //a section ending was declared with too many unknown tokens SMCError_InvalidSection3, /**< A section ending was declared with too many unknown tokens */
SMCError_InvalidSection4, //a section ending has no matching beginning SMCError_InvalidSection4, /**< A section ending has no matching beginning */
SMCError_InvalidSection5, //a section beginning has no matching ending SMCError_InvalidSection5, /**< A section beginning has no matching ending */
SMCError_InvalidTokens, //there were too many unidentifiable strings on one line SMCError_InvalidTokens, /**< There were too many unidentifiable strings on one line */
SMCError_TokenOverflow, //the token buffer overflowed SMCError_TokenOverflow, /**< The token buffer overflowed */
SMCError_InvalidProperty1, //a property was declared outside of any section SMCError_InvalidProperty1, /**< A property was declared outside of any section */
}; };
/** /**