Tasmota/lib/libesp32/ESP-Mail-Client/src/ESP_Mail_Client_Version.h
s-hadinger c2f8821b2f
Sendmail upgraded to ESP-Mail-Client v3.4.9 from v1.2.0, using BearSSL instead of MbedTLS (#19460)
* `Sendmail` upgraded to ESP-Mail-Client v3.4.9 from v1.2.0, using BearSSL instead of MbedTLS

* Fix compilation on ESP8266

* Fix compilation

* fix compilation
2023-09-04 23:00:37 +02:00

12 lines
275 B
C

#pragma once
#ifndef ESP_MAIL_VERSION
#define ESP_MAIL_VERSION "3.4.9"
#define ESP_MAIL_VERSION_NUM 30409
/* The inconsistent file version checking to prevent mixed versions compilation. */
#define VALID_VERSION_CHECK(ver) (ver == ESP_MAIL_VERSION_NUM)
#endif