Stairs/src/global.h

21 lines
383 B
C

/*
* Stairs
* Copyright 2017 (c) Mark van Renswoude
*
* https://git.x2software.net/pub/Stairs
*/
#ifndef __global
#define __global
#include <stdint.h>
#include <stdbool.h>
#include <IPAddress.h>
#include "settings/connection.h"
extern ConnectionSettings* connectionSettings;
extern bool connectionSettingsChanged;
extern uint32_t currentTime;
extern IPAddress emptyIP;
#endif