mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-10-31 09:20:38 +00:00
16 lines
147 B
C++
16 lines
147 B
C++
#ifndef LIBI2PD_CPU_H
|
|
#define LIBI2PD_CPU_H
|
|
|
|
namespace i2p
|
|
{
|
|
namespace cpu
|
|
{
|
|
extern bool aesni;
|
|
extern bool avx;
|
|
|
|
void Detect();
|
|
}
|
|
}
|
|
|
|
#endif
|