1
0
mirror of https://github.com/xmrig/xmrig.git synced 2026-01-23 14:52:52 -05:00

Initial MSVC support.

This commit is contained in:
XMRig
2017-06-12 16:19:07 +03:00
parent a370b8fd30
commit 3df545cfc5
21 changed files with 845 additions and 96 deletions

View File

@@ -28,6 +28,9 @@
#include <stdint.h>
#include "align.h"
struct cryptonight_ctx;
@@ -55,7 +58,7 @@ private:
static int m_flags;
static int m_threads;
static size_t m_offset;
static uint8_t *m_memory __attribute__((aligned(16)));
VAR_ALIGN(16, static uint8_t *m_memory);
# ifndef XMRIG_NO_AEON
static cryptonight_ctx *createLite(int threadId);