Merge branch 'ma/windows-dynload-fix'
Fix calling dynamically loaded functions on Windows. * ma/windows-dynload-fix: lazyload: use correct calling conventions
This commit is contained in:
@ -8,6 +8,8 @@
|
||||
#include "win32/lazyload.h"
|
||||
#include "../config.h"
|
||||
#include "dir.h"
|
||||
#define SECURITY_WIN32
|
||||
#include <sspi.h>
|
||||
|
||||
#define HCAST(type, handle) ((type)(intptr_t)handle)
|
||||
|
||||
@ -1008,7 +1010,7 @@ size_t mingw_strftime(char *s, size_t max,
|
||||
/* a pointer to the original strftime in case we can't find the UCRT version */
|
||||
static size_t (*fallback)(char *, size_t, const char *, const struct tm *) = strftime;
|
||||
size_t ret;
|
||||
DECLARE_PROC_ADDR(ucrtbase.dll, size_t, strftime, char *, size_t,
|
||||
DECLARE_PROC_ADDR(ucrtbase.dll, size_t, __cdecl, strftime, char *, size_t,
|
||||
const char *, const struct tm *);
|
||||
|
||||
if (INIT_PROC_ADDR(strftime))
|
||||
@ -2185,7 +2187,7 @@ enum EXTENDED_NAME_FORMAT {
|
||||
|
||||
static char *get_extended_user_info(enum EXTENDED_NAME_FORMAT type)
|
||||
{
|
||||
DECLARE_PROC_ADDR(secur32.dll, BOOL, GetUserNameExW,
|
||||
DECLARE_PROC_ADDR(secur32.dll, BOOL, SEC_ENTRY, GetUserNameExW,
|
||||
enum EXTENDED_NAME_FORMAT, LPCWSTR, PULONG);
|
||||
static wchar_t wbuffer[1024];
|
||||
DWORD len;
|
||||
|
||||
Reference in New Issue
Block a user