recreate project as DLL
This commit is contained in:
15
test_cases/advanced_instructions.h
Normal file
15
test_cases/advanced_instructions.h
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user