Files
heimdal/packages/windows/kfw_shim/comerr_shim.c
Asanka Herath 8793628306 Windows: Shim library for ABI compatibility with MIT KfW
The shim code creates DLLs that intend to be ABI compatible with MIT
Kerberos for Windows DLLs.  At its current state, the shim isn't
complete and there are multiple functions that are missing.
2010-08-20 13:14:17 -04:00

28 lines
382 B
C

#include<config.h>
#include<stdlib.h>
#include<com_err.h>
int KRB5_CALLCONV
add_error_table(const struct error_table * et)
{
return -1;
}
int KRB5_CALLCONV
remove_error_table(const struct error_table * et)
{
return -1;
}
errf
SHIM_set_com_err_hook (errf new)
{
return set_com_err_hook(new);
}
errf
SHIM_reset_com_err_hook (void)
{
return reset_com_err_hook();
}