@@ -50,6 +50,7 @@ void export_send_prop_types(scope);
5050void export_send_prop_flags (scope);
5151void export_send_prop_variant (scope);
5252void export_server_class (scope);
53+ void export_send_proxy_recipients (scope);
5354
5455
5556// -----------------------------------------------------------------------------
@@ -63,6 +64,7 @@ DECLARE_SP_SUBMODULE(_entities, _props)
6364 export_send_prop_flags (_props);
6465 export_send_prop_variant (_props);
6566 export_server_class (_props);
67+ export_send_proxy_recipients (_props);
6668}
6769
6870
@@ -274,3 +276,33 @@ void export_server_class(scope _props)
274276 // Add memory tools...
275277 ServerClass_ ADD_MEM_TOOLS (ServerClass);
276278}
279+
280+
281+ // -----------------------------------------------------------------------------
282+ // Expose SendProxyRecipients.
283+ // -----------------------------------------------------------------------------
284+ void export_send_proxy_recipients (scope _props)
285+ {
286+ class_<CSendProxyRecipients> SendProxyRecipients (" SendProxyRecipients" );
287+
288+ SendProxyRecipients.def (
289+ " set_all_recipients" ,
290+ &CSendProxyRecipients::SetAllRecipients);
291+
292+ SendProxyRecipients.def (
293+ " clear_all_recipients" ,
294+ &CSendProxyRecipients::ClearAllRecipients);
295+
296+ SendProxyRecipients.def (
297+ " set_recipient" ,
298+ &CSendProxyRecipients::SetRecipient);
299+
300+ SendProxyRecipients.def (
301+ " set_only" ,
302+ &CSendProxyRecipients::SetOnly);
303+
304+ // TODO: m_Bits
305+
306+ // Add memory tools...
307+ SendProxyRecipients ADD_MEM_TOOLS (CSendProxyRecipients);
308+ }
0 commit comments