1// FastRPC IDL interface for GGML HTP
 2
 3#ifndef HTP_IDL
 4#define HTP_IDL
 5
 6#include "AEEStdDef.idl"
 7#include "remote.idl"
 8
 9interface htp_iface : remote_handle64 {
10    AEEResult start(in uint32 sess_id, in uint64 dsp_queue_id, in uint32 n_hvx);
11    AEEResult stop();
12    AEEResult enable_etm();
13    AEEResult disable_etm();
14};
15
16#endif /* HTP_IDL */