NeuralEngine
A Game Engine with embeded Machine Learning algorithms based on Gaussian Processes.
NeWrapper.h
1
11#pragma once
12
13#include <NeCoreLib.h>
14#include <cstddef>
15
16// Wrappers around platform-specific low-level library calls.
17
18namespace NeuralEngine
19{
20
21 void NE_IMPEXP Memcpy(void* target, void const* source, size_t count);
22 void NE_IMPEXP Memcpy(wchar_t* target, wchar_t const* source, size_t count);
23
24}