1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00
samba-mirror/source4/heimdal_build/kafs.h
Gary Lockyer 8a148193da heimdal_build: provide a prototype with the dummy afs header-only function stubs
We do not do AFS in Samba

Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
2020-08-07 03:23:43 +00:00

33 lines
570 B
C

int k_hasafs (void);
int k_hasafs (void) {
return 0;
};
int krb_afslog (const char *cell, const char *realm);
int krb_afslog (const char *cell, const char *realm) {
return 0;
};
int k_unlog (void);
int k_unlog (void) {
return 0;
};
int k_setpag (void);
int k_setpag (void) {
return 0;
};
krb5_error_code krb5_afslog (krb5_context context,
krb5_ccache id,
const char *cell,
krb5_const_realm realm);
krb5_error_code krb5_afslog (krb5_context context,
krb5_ccache id,
const char *cell,
krb5_const_realm realm) {
return 0;
};