Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Havar
asn1c
Commits
52559a2e
Commit
52559a2e
authored
Sep 24, 2004
by
Lev Walkin
Browse files
dedicated asn_application.h header
parent
8e55994d
Changes
2
Hide whitespace changes
Inline
Side-by-side
skeletons/asn_application.h
0 → 100644
View file @
52559a2e
/*-
* Copyright (c) 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
* Redistribution and modifications are permitted subject to BSD license.
*/
/*
* Application-level ASN.1 API.
*/
#ifndef _ASN_APPLICATION_H_
#define _ASN_APPLICATION_H_
#include <asn_types.h>
/* for platform-dependent types */
/*
* Generic type of an application-defined callback to return various
* types of data to the application.
* EXPECTED RETURN VALUES:
* -1: Failed to consume bytes. Abort the mission.
* Non-negative return values indicate success, and ignored.
*/
typedef
int
(
asn_app_consume_bytes_f
)(
const
void
*
buffer
,
size_t
size
,
void
*
application_specific_key
);
#include <constr_TYPE.h>
/* for asn1_TYPE_descriptor_t */
#endif
/* _ASN_APPLICATION_H_ */
skeletons/asn_types.h
View file @
52559a2e
...
...
@@ -52,14 +52,4 @@
#endif
/* __GNUC__ */
#endif
/* MIN */
/*
* Generic type of an application-defined callback to return various
* types of data to the application.
* EXPECTED RETURN VALUES:
* -1: Failed to consume bytes. Abort the mission.
* Other return values indicate success, and ignored.
*/
typedef
int
(
asn_app_consume_bytes_f
)(
const
void
*
buffer
,
size_t
size
,
void
*
application_specific_key
);
#endif
/* _ASN_TYPES_H_ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment