"Das U-Boot" Source Tree
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <sjg@chromium.org>

Simon Glass 86acc21d bebc3547

+13
+13
boot/scene_internal.h
··· 9 9 #ifndef __SCENE_INTERNAL_H 10 10 #define __SCENE_INTERNAL_H 11 11 12 + #include <linux/types.h> 13 + 14 + struct expo; 15 + struct expo_action; 16 + struct expo_arrange_info; 17 + struct expo_theme; 18 + struct scene_obj; 19 + struct scene_obj_menu; 20 + struct scene_obj_textline; 21 + struct scene_obj_txtedit; 22 + struct scene_txt_generic; 12 23 struct vidconsole_bbox; 24 + 25 + enum scene_obj_t; 13 26 14 27 typedef int (*expo_scene_obj_iterator)(struct scene_obj *obj, void *priv); 15 28