diff options
author | Keith Vetter <keithv@fusion.com> | 1995-02-22 03:08:52 +0000 |
---|---|---|
committer | Keith Vetter <keithv@fusion.com> | 1995-02-22 03:08:52 +0000 |
commit | b71f3e8737fa16380f27deaafe5ef63c21cda99f (patch) | |
tree | 091abf6a3e566bce4606ecd0f0e8182d61041c88 /src/lib/krb5/asn.1/asn1_decode.h | |
parent | 33c00b7abb78bb72077129f37d6d0df87e1f6a70 (diff) | |
download | krb5-b71f3e8737fa16380f27deaafe5ef63c21cda99f.tar.gz krb5-b71f3e8737fa16380f27deaafe5ef63c21cda99f.tar.xz krb5-b71f3e8737fa16380f27deaafe5ef63c21cda99f.zip |
Converted krb5/des425 and krb5/asn.1 to the PC
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4970 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/asn.1/asn1_decode.h')
-rw-r--r-- | src/lib/krb5/asn.1/asn1_decode.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/krb5/asn.1/asn1_decode.h b/src/lib/krb5/asn.1/asn1_decode.h index c5b9b5308..d1bb85b3e 100644 --- a/src/lib/krb5/asn.1/asn1_decode.h +++ b/src/lib/krb5/asn.1/asn1_decode.h @@ -55,18 +55,18 @@ Returns ENOMEM if memory is exhausted. Returns asn1 errors. */ -asn1_error_code asn1_decode_integer +asn1_error_code INTERFACE asn1_decode_integer PROTOTYPE((asn1buf *buf, long *val)); -asn1_error_code asn1_decode_unsigned_integer +asn1_error_code INTERFACE asn1_decode_unsigned_integer PROTOTYPE((asn1buf *buf, unsigned long *val)); -asn1_error_code asn1_decode_null +asn1_error_code INTERFACE asn1_decode_null PROTOTYPE((asn1buf *buf)); -asn1_error_code asn1_decode_octetstring +asn1_error_code INTERFACE asn1_decode_octetstring PROTOTYPE((asn1buf *buf, int *retlen, asn1_octet **val)); -asn1_error_code asn1_decode_generalstring +asn1_error_code INTERFACE asn1_decode_generalstring PROTOTYPE((asn1buf *buf, int *retlen, char **val)); -asn1_error_code asn1_decode_charstring +asn1_error_code INTERFACE asn1_decode_charstring PROTOTYPE((asn1buf *buf, int *retlen, char **val)); /* Note: A charstring is a special hack to account for the fact that krb5 structures store some OCTET STRING values in krb5_octet @@ -74,12 +74,12 @@ asn1_error_code asn1_decode_charstring PROTOTYPE((which use char arrays). From the ASN.1 point of view, the two string types are the same, only the receptacles differ. */ -asn1_error_code asn1_decode_printablestring +asn1_error_code INTERFACE asn1_decode_printablestring PROTOTYPE((asn1buf *buf, int *retlen, char **val)); -asn1_error_code asn1_decode_ia5string +asn1_error_code INTERFACE asn1_decode_ia5string PROTOTYPE((asn1buf *buf, int *retlen, char **val)); -asn1_error_code asn1_decode_generaltime +asn1_error_code INTERFACE asn1_decode_generaltime PROTOTYPE((asn1buf *buf, time_t *val)); #endif |