From d86b7b41453c69b3854baa7cdc05a79a3cdfe092 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Tue, 1 Oct 2024 20:45:38 +0100 Subject: Lowercase the stupid file, Windows. ARGH. Actually kind of Neovim's fault, I think. Whatever. --- src/stubs/bcryptprimitives.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/stubs/bcryptprimitives.c (limited to 'src/stubs/bcryptprimitives.c') diff --git a/src/stubs/bcryptprimitives.c b/src/stubs/bcryptprimitives.c new file mode 100644 index 0000000..afcaa7e --- /dev/null +++ b/src/stubs/bcryptprimitives.c @@ -0,0 +1,6 @@ +/* This file is dedicated to the public domain. */ + +// We have to define a real function with the right number of arguments to get +// the mangled symbol _ProcessPrng@8, which the .def file apparently turns +// into an "undecorate" .lib entry through some undocumented magic (of course!). +int __stdcall ProcessPrng(void *x, unsigned int y) { return 0; } -- cgit v1.2.3-54-g00ecf