Added MSVC support for Argon2.

This commit is contained in:
XMRig 2019-08-17 04:01:53 +07:00
parent 3022f19eda
commit fe832f510e
13 changed files with 132 additions and 87 deletions

View file

@ -4,7 +4,11 @@
#include <stdint.h>
#include <string.h>
#include <x86intrin.h>
#ifdef __GNUC__
# include <x86intrin.h>
#else
# include <intrin.h>
#endif
#include "cpu-flags.h"