Files
hook_tests/test_cases/advanced_instructions.h

15 lines
366 B
C

#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);
}