summaryrefslogtreecommitdiff
path: root/orkbasecxx/messages/RecordMsg.h
diff options
context:
space:
mode:
Diffstat (limited to 'orkbasecxx/messages/RecordMsg.h')
-rw-r--r--orkbasecxx/messages/RecordMsg.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/orkbasecxx/messages/RecordMsg.h b/orkbasecxx/messages/RecordMsg.h
index c374476..7dd58ed 100644
--- a/orkbasecxx/messages/RecordMsg.h
+++ b/orkbasecxx/messages/RecordMsg.h
@@ -29,6 +29,7 @@ public:
CStdString m_party;
CStdString m_orkuid;
+ CStdString m_nativecallid;
};
class DLL_IMPORT_EXPORT_ORKBASE PauseMsg : public SyncMessage
@@ -43,6 +44,22 @@ public:
CStdString m_party;
CStdString m_orkuid;
+ CStdString m_nativecallid;
+};
+
+class DLL_IMPORT_EXPORT_ORKBASE StopMsg : public SyncMessage
+{
+public:
+ void Define(Serializer* s);
+ inline void Validate() {};
+
+ CStdString GetClassName();
+ ObjectRef NewInstance();
+ ObjectRef Process();
+
+ CStdString m_party;
+ CStdString m_orkuid;
+ CStdString m_nativecallid;
};
#endif