This repository has been archived on 2024-06-03. You can view files and clone it, but cannot push or open issues or pull requests.
shared-libraries/ScStwLibraries/ScStwLibraries_global.h
2020-04-05 14:11:52 +02:00

22 lines
538 B
C

#ifndef SCSTWLIBRARIES_GLOBAL_H
#define SCSTWLIBRARIES_GLOBAL_H
#include <QtCore/qglobal.h>
#if defined(SCSTWLIBRARIES_LIBRARY)
# define SCSTWLIBRARIES_EXPORT Q_DECL_EXPORT
#else
# define SCSTWLIBRARIES_EXPORT Q_DECL_IMPORT
#endif
/**
* Some global enums
*
*/
enum raceState { IDLE, STARTING, WAITING, RUNNING, STOPPED };
enum signalKey { RaceStateChanged, TimersChanged, ExtensionsChanged, NextStartActionChanged /*, ProfilesChanged*/ };
enum nextStartAction { AtYourMarks, Ready, Start, None };
#endif // SCSTWCLIENT_GLOBAL_H