1 /* 2 * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #pragma once 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 typedef struct lcd_cam_dev_t *lcd_soc_handle_t; 14 15 typedef struct { 16 lcd_soc_handle_t dev; 17 } lcd_hal_context_t; 18 19 void lcd_hal_init(lcd_hal_context_t *hal, int id); 20 21 #ifdef __cplusplus 22 } 23 #endif 24