mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-15 03:28:49 -07:00
* Refactored code out of common/ into servatrice/ * added smtp client library * disable registration when connected * validate email address * send activation token via email
10 lines
179 B
C
10 lines
179 B
C
#ifndef SMTPEXPORTS_H
|
|
#define SMTPEXPORTS_H
|
|
|
|
#ifdef SMTP_BUILD
|
|
#define SMTP_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
#define SMTP_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // SMTPEXPORTS_H
|