blob: d712c32b1b6dbd5fd39ede4567ef72818af95466 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//===========================================
// Lumina-desktop source code
// Copyright (c) 2015-2016, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
// Global defines and enumerations for external includes
//===========================================
#ifndef _LUMINA_INTERNAL_GLOBAL_OBJECTS_H
#define _LUMINA_INTERNAL_GLOBAL_OBJECTS_H
#include "Global-includes.h"
//Any special defines for settings/testing
#define ANIMTIME 80 //animation time in milliseconds
//Global flags/structures
namespace Lumina{
//Flags/enumerations
enum WindowAction{MoveResize, Show, Hide, TryClose, Closed, WA_NONE};
//Data structures and objects
extern LXCB *SYSTEM;
};
#endif
|