Unify the include guards accross all header files

This commit is contained in:
Alexandre Paillier
2022-03-07 14:21:32 +01:00
parent 89070cd2be
commit c548aba364
27 changed files with 97 additions and 38 deletions

View File

@@ -1,6 +1,7 @@
#ifdef HAVE_NFT_SUPPORT
#ifndef _ERC1155_PLUGIN_H_
#define _ERC1155_PLUGIN_H_
#pragma once
#ifdef HAVE_NFT_SUPPORT
#include <string.h>
#include "eth_plugin_handler.h"
@@ -53,3 +54,5 @@ void handle_provide_parameter_1155(void *parameters);
void handle_query_contract_ui_1155(void *parameters);
#endif // HAVE_NFT_SUPPORT
#endif // _ERC1155_PLUGIN_H_

View File

@@ -1,6 +1,7 @@
#ifdef HAVE_NFT_SUPPORT
#ifndef _ERC721_PLUGIN_H_
#define _ERC721_PLUGIN_H_
#pragma once
#ifdef HAVE_NFT_SUPPORT
#include <string.h>
#include "eth_plugin_handler.h"
@@ -44,3 +45,5 @@ void handle_provide_parameter_721(void *parameters);
void handle_query_contract_ui_721(void *parameters);
#endif // HAVE_NFT_SUPPORT
#endif // _ERC721_PLUGIN_H_