Browse Source

Follow Engine's API change in test_adapter, too.

LAS-2: Follow Engine's API change in test_adapter.
sync
Roker 7 years ago
parent
commit
8bde1d7242
  1. 6
      test_adapter.cc

6
test_adapter.cc

@ -12,13 +12,13 @@ using namespace pEp::Adapter;
PEP_STATUS messageToSend(struct _message *msg)
{
cout << "calling messageToSend();\n";
cout << "calling messageToSend();\n";
return PEP_STATUS_OK;
}
PEP_STATUS notifyHandshake(void *obj, pEp_identity *me, pEp_identity *partner, sync_handshake_signal signal)
PEP_STATUS notifyHandshake(pEp_identity *me, pEp_identity *partner, sync_handshake_signal signal)
{
cout << "calling notifyHandshake();\n";
cout << "calling notifyHandshake();\n";
return PEP_STATUS_OK;
}

Loading…
Cancel
Save