forked from viabtc/viabtc_exchange_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rh_reader.h
20 lines (15 loc) · 782 Bytes
/
rh_reader.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* Description:
* History: [email protected], 2017/04/24, create
*/
# ifndef _RH_READER_H_
# define _RH_READER_H_
# include "rh_config.h"
json_t *get_user_balance_history(MYSQL *conn, uint32_t user_id,
const char *asset, const char *business, uint64_t start_time, uint64_t end_time, size_t offset, size_t limit);
json_t *get_user_order_finished(MYSQL *conn, uint32_t user_id,
const char *market, int side, uint64_t start_time, uint64_t end_time, size_t offset, size_t limit);
json_t *get_order_deal_details(MYSQL *conn, uint64_t order_id, size_t offset, size_t limit);
json_t *get_finished_order_detail(MYSQL *conn, uint64_t order_id);
json_t *get_market_user_deals(MYSQL *conn, uint32_t user_id, const char *market, size_t offset, size_t limit);
# endif