* @brief Unregister for a particular client message * using the ID passed back from RegisterForClientMessageEvent(). * @returns True if succeeds *************************************************************/
| 2220 | * @returns True if succeeds |
| 2221 | *************************************************************/ |
| 2222 | bool Kernel::UnregisterForClientMessageEvent(int callbackID) |
| 2223 | { |
| 2224 | smlRhsEventId id = smlEVENT_CLIENT_MESSAGE ; |
| 2225 | |
| 2226 | return InternalRemoveRhsFunction(id, callbackID) ; |
| 2227 | } |
| 2228 | |
| 2229 | /************************************************************* |
| 2230 | * @brief Send a message to another client (not the Soar kernel). |
no outgoing calls