zig/lib/libc/mingw/secapi/rand_s.c
Andrew Kelley c26bace606 mingw-w64: update CRT files to latest git commit
Upstream commit dddccbc3ef50ac52bf00723fd2f68d98140aab80

* adds ucrtbase.def.in
* mingwex: replace mingw crt files with ucrt files
* adds missing mingw-w64 ucrt files

The rules that govern which set of files are included or excluded is
contained in the logic for tools/update_mingw.zig
2024-01-08 11:52:38 -07:00

37 lines
914 B
C
Vendored

#define _CRT_RAND_S
#include <stdlib.h>
#include <windows.h>
#include <ntsecapi.h>
#include <errno.h>
#include <msvcrt.h>
static BOOLEAN (WINAPI *pRtlGenRandom)(void*,ULONG);
static errno_t mingw_rand_s(unsigned int *pval)
{
return !pval || !pRtlGenRandom || !pRtlGenRandom(pval, sizeof(*pval)) ? EINVAL : 0;
}
static errno_t __cdecl init_rand_s(unsigned int*);
errno_t (__cdecl *__MINGW_IMP_SYMBOL(rand_s))(unsigned int*) = init_rand_s;
errno_t __cdecl
rand_s(unsigned int *val)
{
return __MINGW_IMP_SYMBOL(rand_s)(val);
}
static errno_t __cdecl init_rand_s(unsigned int *val)
{
int (__cdecl *func)(unsigned int*);
func = (void*)GetProcAddress(__mingw_get_msvcrt_handle(), "rand_s");
if(!func) {
func = mingw_rand_s;
pRtlGenRandom = (void*)GetProcAddress(LoadLibraryW(L"advapi32.dll"), "SystemFunction036");
}
return (__MINGW_IMP_SYMBOL(rand_s) = func)(val);
}