1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00
lvgl/misc/misc.h

48 lines
682 B
C
Raw Normal View History

2017-11-21 10:35:57 +01:00
/**
* @file misc.h
*
*/
#ifndef MISC_H
#define MISC_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
/*********************
* DEFINES
*********************/
#define MISC_VERSION_MAJOR 5
#define MISC_VERSION_MINOR 0
#define MISC_VERSION_PATCH 0
#define MISC_VERSION_INFO "beta"
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
* Initialize the enabled misc. modules
*/
void misc_init(void);
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif