mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-17 20:08:28 +00:00
20 lines
629 B
C++
20 lines
629 B
C++
#include "NotificationActivator.hpp"
|
|
|
|
NotificationActivator::NotificationActivator() {
|
|
}
|
|
|
|
NotificationActivator::~NotificationActivator() {
|
|
}
|
|
|
|
HRESULT STDMETHODCALLTYPE NotificationActivator::Activate(LPCWSTR appUserModelId,
|
|
LPCWSTR invokedArgs,
|
|
const NOTIFICATION_USER_INPUT_DATA *data,
|
|
ULONG dataCount) {
|
|
Q_UNUSED(appUserModelId);
|
|
Q_UNUSED(invokedArgs);
|
|
Q_UNUSED(data);
|
|
Q_UNUSED(dataCount);
|
|
return S_OK;
|
|
}
|
|
|
|
CoCreatableClass(NotificationActivator);
|