CPU.h 147 B

12345678910111213141516
  1. #ifndef LIBI2PD_CPU_H
  2. #define LIBI2PD_CPU_H
  3. namespace i2p
  4. {
  5. namespace cpu
  6. {
  7. extern bool aesni;
  8. extern bool avx;
  9. void Detect();
  10. }
  11. }
  12. #endif