-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added error during compilation if client ID is missing.
- Loading branch information
1 parent
5deb45b
commit d3fbb43
Showing
1 changed file
with
6 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
#ifndef CLIENTID_H | ||
#define CLIENTID_H | ||
|
||
#endif // CLIENTID_H | ||
|
||
// Achtung: Hier muss eine gültige ClientID für den Zugriff | ||
// auf die API eingetragen werden. | ||
// Eine Veröffentlichung ist ID ist seitens des | ||
// Rechenzentrums untersagt. | ||
#define CLIENTID "INSERTIDHERE" | ||
#define CLIENTID "INSERT YOUR CLIENT ID HERE" | ||
|
||
// Remove this line after insertion of the client ID | ||
#error ERROR: NO CLIENTID IN CLIENTID.H DEFINED | ||
|
||
#endif // CLIENTID_H |