From: Simon Glass Date: Fri, 2 May 2025 14:46:49 +0000 (-0600) Subject: expo: Add forward declarations to scene_internal.h X-Git-Tag: v2025.10-rc1~118^2~56^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86acc21d854cbd881d1612c6b8528de0a577b91e;p=thirdparty%2Fu-boot.git expo: Add forward declarations to scene_internal.h Provide some forward declarations for types used in this file, to keep the LSP happy and avoid errors if the caller happens not to include the required header. Signed-off-by: Simon Glass --- diff --git a/boot/scene_internal.h b/boot/scene_internal.h index 760cc629b86..95927472875 100644 --- a/boot/scene_internal.h +++ b/boot/scene_internal.h @@ -9,8 +9,21 @@ #ifndef __SCENE_INTERNAL_H #define __SCENE_INTERNAL_H +#include + +struct expo; +struct expo_action; +struct expo_arrange_info; +struct expo_theme; +struct scene_obj; +struct scene_obj_menu; +struct scene_obj_textline; +struct scene_obj_txtedit; +struct scene_txt_generic; struct vidconsole_bbox; +enum scene_obj_t; + typedef int (*expo_scene_obj_iterator)(struct scene_obj *obj, void *priv); /**