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[];
|
2021-11-23 17:05:40 +01:00
|
|
|
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;
|
2021-11-23 17:05:40 +01:00
|
|
|
SDRPP_EXPORT const int hardwareDonatorCount;
|
2020-12-22 18:42:30 +01:00
|
|
|
SDRPP_EXPORT const int patronCount;
|
|
|
|
}
|