SDRPlusPlus/core/src/credits.h

13 lines
412 B
C
Raw Normal View History

2020-12-22 18:42:30 +01:00
#pragma once
2020-12-22 20:00:51 +01:00
#include <module.h>
2020-12-22 18:42:30 +01:00
namespace sdrpp_credits {
SDRPP_EXPORT const char* contributors[];
SDRPP_EXPORT const char* libraries[];
SDRPP_EXPORT const char* hardwareDonators[];
2020-12-22 18:42:30 +01:00
SDRPP_EXPORT const char* patrons[];
SDRPP_EXPORT const int contributorCount;
SDRPP_EXPORT const int libraryCount;
SDRPP_EXPORT const int hardwareDonatorCount;
2020-12-22 18:42:30 +01:00
SDRPP_EXPORT const int patronCount;
}