#include <stdbool.h>
#include <sys/time.h>
#include <pthread.h>
#include "../include/ref.h"
#include "../include/table.h"
#include "../include/account.h"
#include "../include/card.h"
#include "../include/eventloop.h"
#include "../include/sugar.h"
Go to the source code of this file.
|
enum | pkrsrv_poker_state_t {
PKRSRV_POKER_STATE_CREATED
, PKRSRV_POKER_STATE_W4P
, PKRSRV_POKER_STATE_STARTING
, PKRSRV_POKER_STATE_SMALL_BLIND
,
PKRSRV_POKER_STATE_BIG_BLIND
, PKRSRV_POKER_STATE_PREFLOP
, PKRSRV_POKER_STATE_FLOP
, PKRSRV_POKER_STATE_TURN
,
PKRSRV_POKER_STATE_RIVER
, PKRSRV_POKER_STATE_DONE
} |
|
enum | pkrsrv_poker_hand_kind_t { PKRSRV_POKER_HAND_KIND_PREFLOP
, PKRSRV_POKER_HAND_KIND_FLOP
, PKRSRV_POKER_HAND_KIND_TURN
, PKRSRV_POKER_HAND_KIND_RIVER
} |
|
enum | pkrsrv_poker_actions_action_kind_t {
PKRSRV_POKER_ACTION_KIND_SMALL_BLIND
, PKRSRV_POKER_ACTION_KIND_BIG_BLIND
, PKRSRV_POKER_ACTION_KIND_RAISE
, PKRSRV_POKER_ACTION_KIND_CHECK
,
PKRSRV_POKER_ACTION_KIND_FOLD
} |
|