mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-02 09:40:18 +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
|