Skip to content
Closed
19 changes: 18 additions & 1 deletion AVOutput/AVOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,27 @@
#include "UtilsIarm.h"
#include "UtilsSearchRDKProfile.h"

#define API_VERSION_NUMBER_MAJOR 1
#define API_VERSION_NUMBER_MINOR 1
#define API_VERSION_NUMBER_PATCH 0

namespace WPEFramework {
namespace Plugin {

SERVICE_REGISTRATION(AVOutput,1, 0);
static Plugin::Metadata<Plugin::AVOutput> metadata(
// Version (Major, Minor, Patch)
API_VERSION_NUMBER_MAJOR, API_VERSION_NUMBER_MINOR, API_VERSION_NUMBER_PATCH,
// Preconditions
{},
// Terminations
{},
// Controls
{}
);


SERVICE_REGISTRATION(AVOutput, API_VERSION_NUMBER_MAJOR, API_VERSION_NUMBER_MINOR, API_VERSION_NUMBER_PATCH);


AVOutput::AVOutput()
{
Expand Down
Loading