Update plugin sdk build script to only copy files instead of cherry-picking functions

This commit is contained in:
Francois Beutin
2024-01-18 10:28:00 +01:00
parent 5bf5023e35
commit b3b9046a63
10 changed files with 21 additions and 285 deletions

View File

@@ -1,11 +1,15 @@
// clang-format off
#ifndef _ETH_PLUGIN_INTERFACE_H_
#define _ETH_PLUGIN_INTERFACE_H_
#pragma once
#include "os.h"
#include "cx.h"
// Include other header compatible with plugins
#include "asset_info.h"
#include "caller_api.h"
#include "common_utils.h"
#include "plugin_utils.h"
#include "tx_content.h"
/*************************************************************************************************
@@ -217,6 +221,4 @@ typedef struct ethQueryContractUI_s {
} ethQueryContractUI_t;
// void handle_query_contract_ui(ethQueryContractUI_t *parameters);
#endif // _ETH_PLUGIN_INTERFACE_H_
// clang-format on