comparison: src/network.h
src/network.h
- changeset 194
- 619f07c95894
- parent 192
- e57e2874fb2a
equal
deleted
inserted
replaced
| 82 typedef struct { |
82 typedef struct { |
| 83 uint32_t mtime_sec; |
83 uint32_t mtime_sec; |
| 84 uint32_t mtime_usec; |
84 uint32_t mtime_usec; |
| 85 uint8_t piece; |
85 uint8_t piece; |
| 86 uint8_t fromfile; |
86 uint8_t fromfile; |
| 87 uint8_t fromrow; |
87 uint8_t fromrank; |
| 88 uint8_t tofile; |
88 uint8_t tofile; |
| 89 uint8_t torow; |
89 uint8_t torank; |
| 90 uint8_t capture; |
90 uint8_t capture; |
| 91 uint8_t check_or_mate; |
91 uint8_t check_or_mate; |
| 92 uint8_t promotion; |
92 uint8_t promotion; |
| 93 } NetMove; |
93 } NetMove; |
| 94 |
94 |