2019-07-08 12:45:16 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @file system_win.c
|
|
|
|
* @author MCD Application Team
|
|
|
|
* @brief System information functions
|
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
2023-03-14 16:54:20 +01:00
|
|
|
* Copyright (c) 2016 STMicroelectronics.
|
|
|
|
* All rights reserved.
|
2019-07-08 12:45:16 +01:00
|
|
|
*
|
2023-03-14 16:54:20 +01:00
|
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
|
|
* in the root directory of this software component.
|
|
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
2019-07-08 12:45:16 +01:00
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#undef GLOBAL
|
|
|
|
#ifdef __IMAGEBROWSER_APP_C
|
|
|
|
#define GLOBAL
|
|
|
|
#else
|
|
|
|
#define GLOBAL extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/** @addtogroup SYSTEM_INFO_MODULE
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @defgroup SYSTEM_INFO
|
|
|
|
* @brief system info routines
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* external defines -----------------------------------------------------------*/
|
|
|
|
/* External variables --------------------------------------------------------*/
|
|
|
|
GLOBAL const K_ModuleItem_Typedef ModuleImageBrowser;
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Private macros ------------------------------------------------------------*/
|
|
|
|
/* Private variables ---------------------------------------------------------*/
|
|
|
|
/* Private functions ---------------------------------------------------------*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|