mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 03:37:49 +02:00
15 lines
154 B
C++
15 lines
154 B
C++
#ifndef LIBDOTNET_CPU_H
|
|
#define LIBDOTNET_CPU_H
|
|
|
|
namespace dotnet
|
|
{
|
|
namespace cpu
|
|
{
|
|
extern bool aesni;
|
|
extern bool avx;
|
|
|
|
void Detect();
|
|
}
|
|
}
|
|
|
|
#endif
|