blob: 034932b47008dab9685c9fc413ad0d5bc27a839a [file] [log] [blame]
#include <seos.h>
#include <hostIntf.h>
static void hostIntfAppStart(uint32_t tid)
{
hostIntfRequest();
}
static void hostIntfAppEnd(void)
{
hostIntfRelease();
}
static void hostintfAppHandle(uint32_t evtType, const void* evtData)
{
}
APP_INIT(hostIntfAppStart, hostIntfAppEnd, hostintfAppHandle);