/*===========================================================================================================
** GLOBALS.H
**==========================================================================================================
** This module define all globals vars
**==========================================================================================================
** Date Author Comment
** XX-XX-XXXX XXXX_YYYY Initial Version
**==========================================================================================================*/
#ifndef __GLOBALS_H
#define __GLOBALS_H
/* Include area */
#include "types.h"
/* Esta macro define el comportamiento de la declaracion _STORAGE_LINK_ */
#ifdef __FORCE_STORAGE_LINK__
#define _STORAGE_LINK
#else
#define _STORAGE_LINK extern
#endif
_STORAGE_LINK bool DownloadPushButtonWasPress;
_STORAGE_LINK bool LastDownloadWasSuccess;
_STORAGE_LINK bool Inited;
#endif