From 05e18833ac037a218754b76e83b095a520d0cc3a Mon Sep 17 00:00:00 2001
From: David Anderson <dvander@alliedmods.net>
Date: Thu, 28 Aug 2008 17:18:26 +0000
Subject: [PATCH] Fixed IHandleSys doc for failure outparams.

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%402479
---
 public/IHandleSys.h | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/public/IHandleSys.h b/public/IHandleSys.h
index 4c9c16c6..78c3c338 100644
--- a/public/IHandleSys.h
+++ b/public/IHandleSys.h
@@ -246,7 +246,7 @@ namespace SourceMod
 		 *						permissions.
 		 * @param ident		Security token for any permissions.  If typeAccess is NULL, this 
 		 *					becomes the owning identity.
-		 * @param err		Optional pointer to store an error code.
+		 * @param err		Optional pointer to store an error code on failure (undefined on success).
 		 * @return			A new HandleType_t unique ID, or 0 on failure.
 		 */
 		virtual HandleType_t CreateType(const char *name,
@@ -283,7 +283,7 @@ namespace SourceMod
 		 * @param object	Object to bind to the handle.
 		 * @param owner		Owner of the new Handle (may be NULL).
 		 * @param ident		Identity for type access if needed (may be NULL).
-		 * @param err		Optional pointer to store an error code.
+		 * @param err		Optional pointer to store an error code on failure (undefined on success).
 		 * @return			A new Handle_t, or 0 on failure.
 		 */
 		virtual Handle_t CreateHandle(HandleType_t type, 
@@ -349,7 +349,7 @@ namespace SourceMod
 		 * @param pSec		Security pointer; pOwner is written as the owner,
 		 *					pIdent is used as the parent identity for authorization.
 		 * @param pAccess	Access right descriptor for the Handle; NULL for type defaults.
-		 * @param err		Optional pointer to store an error code.
+		 * @param err		Optional pointer to store an error code on failure (undefined on success).
 		 * @return			A new Handle_t, or 0 on failure.
 		 */
 		virtual Handle_t CreateHandleEx(HandleType_t type, 
@@ -361,3 +361,4 @@ namespace SourceMod
 }
 
 #endif //_INCLUDE_SOURCEMOD_HANDLESYSTEM_INTERFACE_H_
+