1 /*
2  * Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #pragma once
8 
9 void start_cpu0_image(int image_index, int slot, unsigned int hdr_offset);
10 #ifdef CONFIG_ESP_MULTI_PROCESSOR_BOOT
11 void start_cpu1_image(int image_index, int slot, unsigned int hdr_offset);
12 #endif
13 
14 void esp_app_image_load(int image_index, int slot, unsigned int hdr_offset, unsigned int *entry_addr);
15