recreate project as DLL

This commit is contained in:
2017-12-26 15:20:04 +01:00
parent 357d3178aa
commit 51118baca8
14 changed files with 103 additions and 61 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
extern "C" {
/**
* Gets the square root of num four times and writes it to @res
*
* @param num: the number of which the square root shall be taken
* @param res: where the 4 results shall be written
*/
void _declspec(dllexport) _AVX(float num, void* res);
/**
* Just a wrapper around RDRAND
*/
uint32_t _declspec(dllexport) _RDRAND(void);
}