added key selection setting

fixed amb309

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40825
This commit is contained in:
David Anderson
2007-05-21 01:11:37 +00:00
parent 98374f2ce6
commit daceab19cd
7 changed files with 53 additions and 1 deletions
+12
View File
@@ -224,6 +224,18 @@ namespace SourceMod
* @brief Destroys the display object.
*/
virtual void DeleteThis() =0;
/**
* @brief Sets the selectable key map. Returns false if the function
* is not supported.
*
* @param keys A bit string where each bit N-1 specifies
* that key N is selectable (key 0 is bit 9).
* If the selectable key map is 0, it will be
* automatically set to allow 0.
* @return True on success, false if not supported.
*/
virtual bool SetSelectableKeys(unsigned int keymap) =0;
};
/**