Skip to content
Snippets Groups Projects
Commit e12cd24d authored by Dmitriy A. Gerasimov's avatar Dmitriy A. Gerasimov Committed by Kurotych Anatolii
Browse files

[*] typedef for es object (#2)

parent f5ba3020
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,7 @@ typedef struct dap_stream dap_stream_t; ...@@ -28,6 +28,7 @@ typedef struct dap_stream dap_stream_t;
typedef struct dap_stream_pkt dap_stream_pkt_t; typedef struct dap_stream_pkt dap_stream_pkt_t;
typedef struct dap_stream_ch_proc dap_stream_ch_proc_t; typedef struct dap_stream_ch_proc dap_stream_ch_proc_t;
typedef struct dap_stream_ch dap_stream_ch_t; typedef struct dap_stream_ch dap_stream_ch_t;
typedef struct dap_events_socket dap_events_socket_t;
#define SERVICE_CHANNEL_ID 's' #define SERVICE_CHANNEL_ID 's'
#define DATA_CHANNEL_ID 'd' #define DATA_CHANNEL_ID 'd'
...@@ -39,7 +40,6 @@ typedef struct dap_stream_ch{ ...@@ -39,7 +40,6 @@ typedef struct dap_stream_ch{
bool ready_to_write; bool ready_to_write;
bool ready_to_read; bool ready_to_read;
dap_stream_t * stream; dap_stream_t * stream;
struct{ struct{
uint64_t bytes_write; uint64_t bytes_write;
uint64_t bytes_read; uint64_t bytes_read;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment