⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 asn1p_xports.h

📁 ASN.1解析解码工具,可以解析各种ASN.1格式的文件,并对相应的BER文件解码
💻 H
字号:
/* * Imports and exports structure. */#ifndef	ASN1_PARSE_XPORTS_H#define	ASN1_PARSE_XPORTS_Henum asn1p_xports {	XPT_IMPORTS,	XPT_EXPORTS};struct AssignedIdentifier {	asn1p_oid_t *oid;	/* Optional OID of the module */	asn1p_value_t *value;	/* DefinedValue */};typedef struct asn1p_xports_s {	/*	 * Type of the xports structure.	 */	enum asn1p_xports xports_type;	/*	 * Module name and optional OID, occur after FROM.	 */	char *fromModuleName;		/* Name of the module */	struct AssignedIdentifier identifier;	/*	 * Number of entities to import.	 */	TQ_HEAD(struct asn1p_expr_s)	members;	/*	 * Pointer to the next xports structure in whatever list.	 */	TQ_ENTRY(struct asn1p_xports_s)	xp_next;} asn1p_xports_t;/* * Constructor and destructor. */asn1p_xports_t *asn1p_xports_new(void);void asn1p_xports_free(asn1p_xports_t *);#endif	/* ASN1_PARSE_XPORTS_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -