Neonode zForce(TM) SDK
Asn1Protocol.h
Go to the documentation of this file.
1 
9 #ifndef PROTOCOL_ASN1PROTOCOL_ASN1PROTOCOL_H
10 #define PROTOCOL_ASN1PROTOCOL_ASN1PROTOCOL_H
11 
12 #ifndef ZFORCECOMMON_H
13  #error Please include "zForceCommon.h" before this file.
14 #endif // ZFORCECOMMON_H
15 
16 typedef enum Asn1InitializationStatus Asn1InitializationStatus;
17 enum Asn1InitializationStatus
18 {
19  Asn1Uninitialized = 0,
20  Asn1Initialized
21 };
22 
23 typedef struct Asn1Protocol Asn1Protocol;
28 {
30  Asn1InitializationStatus InitializationStatus;
31 };
32 
33 // Exported Functions (prefixed with module name and underscore)
34 
50 DLLINTERNAL bool Asn1Protocol_Initialize (void);
51 
52 #endif // PROTOCOL_ASN1PROTOCOL_ASN1PROTOCOL_H
53 
DLLINTERNAL bool Asn1Protocol_Initialize(void)
Adds the ASN.1 Protocol to the ProtocolTable.
This structure represents the ASN.1 protocol class.
Definition: Asn1Protocol.h:27
Protocol
Inherited members.
Definition: Asn1Protocol.h:29