-
-
Notifications
You must be signed in to change notification settings - Fork 572
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ryzerth
committed
Dec 22, 2020
1 parent
98b6e58
commit 4a86d60
Showing
5 changed files
with
72 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#include <credits.h> | ||
|
||
namespace sdrpp_credits { | ||
const char* contributors[] = { | ||
"Ryzerth (Author)", | ||
"aosync", | ||
"Alexsey Shestacov", | ||
"Benjamin Kyd", | ||
"Tobias Mädel", | ||
"Raov", | ||
"Howard0su" | ||
}; | ||
|
||
const char* libraries[] = { | ||
"Dear ImGui (ocornut)", | ||
"json (nlohmann)", | ||
"portaudio (P.A. comm.)", | ||
"SoapySDR (PothosWare)", | ||
"spdlog (gabime)", | ||
}; | ||
|
||
const char* patrons[] = { | ||
"SignalsEverywhere", | ||
"Lee Donaghy" | ||
}; | ||
|
||
const int contributorCount = sizeof(contributors) / sizeof(char*); | ||
const int libraryCount = sizeof(libraries) / sizeof(char*); | ||
const int patronCount = sizeof(patrons) / sizeof(char*); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma once | ||
#include <new_module.h> | ||
|
||
namespace sdrpp_credits { | ||
SDRPP_EXPORT const char* contributors[]; | ||
SDRPP_EXPORT const char* libraries[]; | ||
SDRPP_EXPORT const char* patrons[]; | ||
SDRPP_EXPORT const int contributorCount; | ||
SDRPP_EXPORT const int libraryCount; | ||
SDRPP_EXPORT const int patronCount; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters