42 lines
629 B
C
42 lines
629 B
C
/**
|
|
* @file lv_example_gltf.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_EXAMPLE_GLTF_H
|
|
#define LV_EXAMPLE_GLTF_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
|
|
#include "../../lv_examples.h"
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
void lv_example_gltf_1(void);
|
|
void lv_example_gltf_2(void);
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*LV_EXAMPLE_GLTF_H*/
|