WIN32: fix calling conventions for 32-bit builds

On 32-bit Windows Intel builds the __cdecl and __stdcall calling
conventions are different so labeling the functions that are
exported or assigned to function pointers matters.

Change-Id: I03b6f34baeb9ffb2e683fd979f12f27a5078a4da
This commit is contained in:
Jeffrey Altman
2019-01-08 12:58:50 -05:00
parent dcfcdd00d8
commit 387684aa93
21 changed files with 30 additions and 30 deletions

View File

@@ -338,7 +338,7 @@ hx509_certs_end_seq(hx509_context context,
HX509_LIB_FUNCTION int HX509_LIB_CALL
hx509_certs_iter_f(hx509_context context,
hx509_certs certs,
int (*func)(hx509_context, void *, hx509_cert),
int (HX509_LIB_CALL *func)(hx509_context, void *, hx509_cert),
void *ctx)
{
hx509_cursor cursor;
@@ -600,7 +600,7 @@ hx509_certs_filter(hx509_context context,
}
static int
static int HX509_LIB_CALL
certs_merge_func(hx509_context context, void *ctx, hx509_cert c)
{
return hx509_certs_add(context, (hx509_certs)ctx, c);