- the handle system now lets you create HandleSecurity structs easier, but source compatibility is broken (using the old syntax wasn't really good C++ anyway!)

- fixed VM including PluginSys for some reason

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40863
This commit is contained in:
David Anderson
2007-05-29 08:30:13 +00:00
parent c1c293ccc4
commit be634bb027
4 changed files with 12 additions and 5 deletions
+7
View File
@@ -157,6 +157,13 @@ namespace SourceMod
*/
struct HandleSecurity
{
HandleSecurity()
{
}
HandleSecurity(IdentityToken_t *owner, IdentityToken_t *identity)
: pOwner(owner), pIdentity(identity)
{
}
IdentityToken_t *pOwner; /**< Owner of the Handle */
IdentityToken_t *pIdentity; /**< Owner of the Type */
};