(svn r10690) -Codechange: use the enum that describes all callback IDs in favor of "just" using an untyped integer.

This commit is contained in:
rubidium
2007-07-25 19:06:29 +00:00
parent 77b0e30b76
commit 9e3ee0e689
15 changed files with 29 additions and 22 deletions

View File

@@ -15,6 +15,9 @@
* Names are formatted as CBID_<CLASS>_<CALLBACK>
*/
enum CallbackID {
/** Set when using the callback resolve system, but not to resolve a callback. */
CBID_NO_CALLBACK = 0x00,
/** Set when calling a randomizing trigger (almost undocumented). */
CBID_RANDOM_TRIGGER = 0x01,