- 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:
@@ -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 */
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user