小忍者项目相关文件上传
This commit is contained in:
72
MXC-A36/xrz/lv_drivers/win32drv/win32drv.h
Normal file
72
MXC-A36/xrz/lv_drivers/win32drv/win32drv.h
Normal file
@ -0,0 +1,72 @@
|
||||
/**
|
||||
* @file win32drv.h
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef LV_WIN32DRV_H
|
||||
#define LV_WIN32DRV_H
|
||||
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
|
||||
#ifndef LV_DRV_NO_CONF
|
||||
#ifdef LV_CONF_INCLUDE_SIMPLE
|
||||
#include "lv_drv_conf.h"
|
||||
#else
|
||||
#include "../../lv_drv_conf.h"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if USE_WIN32DRV
|
||||
|
||||
#include <Windows.h>
|
||||
|
||||
#if _MSC_VER >= 1200
|
||||
// Disable compilation warnings.
|
||||
#pragma warning(push)
|
||||
// nonstandard extension used : bit field types other than int
|
||||
#pragma warning(disable:4214)
|
||||
// 'conversion' conversion from 'type1' to 'type2', possible loss of data
|
||||
#pragma warning(disable:4244)
|
||||
#endif
|
||||
|
||||
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
|
||||
#include "lvgl.h"
|
||||
#else
|
||||
#include "lvgl/lvgl.h"
|
||||
#endif
|
||||
|
||||
#if _MSC_VER >= 1200
|
||||
// Restore compilation warnings.
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
|
||||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
|
||||
/**********************
|
||||
* TYPEDEFS
|
||||
**********************/
|
||||
|
||||
/**********************
|
||||
* GLOBAL PROTOTYPES
|
||||
**********************/
|
||||
|
||||
EXTERN_C bool lv_win32_quit_signal;
|
||||
|
||||
EXTERN_C bool lv_win32_init(
|
||||
HINSTANCE instance_handle,
|
||||
int show_window_mode,
|
||||
lv_coord_t hor_res,
|
||||
lv_coord_t ver_res,
|
||||
HICON icon_handle);
|
||||
|
||||
/**********************
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
#endif /*USE_WIN32DRV*/
|
||||
|
||||
#endif /*LV_WIN32DRV_H*/
|
Reference in New Issue
Block a user