50 lines
1.2 KiB
C
50 lines
1.2 KiB
C
/*
|
|
* Generated by asn1c-0.9.22 (http://lionet.info/asn1c)
|
|
* From ASN.1 module "POKERTH-PROTOCOL"
|
|
* found in "../../../docs/pokerth.asn1"
|
|
* `asn1c -fnative-types`
|
|
*/
|
|
|
|
#ifndef _NetPlayerAction_H_
|
|
#define _NetPlayerAction_H_
|
|
|
|
|
|
#include <asn_application.h>
|
|
|
|
/* Including external dependencies */
|
|
#include <NativeEnumerated.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Dependencies */
|
|
typedef enum NetPlayerAction {
|
|
NetPlayerAction_actionNone = 0,
|
|
NetPlayerAction_actionFold = 1,
|
|
NetPlayerAction_actionCheck = 2,
|
|
NetPlayerAction_actionCall = 3,
|
|
NetPlayerAction_actionBet = 4,
|
|
NetPlayerAction_actionRaise = 5,
|
|
NetPlayerAction_actionAllIn = 6
|
|
} e_NetPlayerAction;
|
|
|
|
/* NetPlayerAction */
|
|
typedef long NetPlayerAction_t;
|
|
|
|
/* Implementation */
|
|
extern asn_TYPE_descriptor_t asn_DEF_NetPlayerAction;
|
|
asn_struct_free_f NetPlayerAction_free;
|
|
asn_struct_print_f NetPlayerAction_print;
|
|
asn_constr_check_f NetPlayerAction_constraint;
|
|
ber_type_decoder_f NetPlayerAction_decode_ber;
|
|
der_type_encoder_f NetPlayerAction_encode_der;
|
|
xer_type_decoder_f NetPlayerAction_decode_xer;
|
|
xer_type_encoder_f NetPlayerAction_encode_xer;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _NetPlayerAction_H_ */
|