1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-21 22:13:07 +01:00

Name all the typdef-ed structs (#3581)

This commit is contained in:
janisozaur
2016-05-12 23:57:40 +02:00
committed by Ted John
parent 9fac7f38a5
commit 658e877955
72 changed files with 212 additions and 211 deletions

View File

@@ -39,13 +39,13 @@ void http_dispose() { }
#define MIME_TYPE_APPLICATION_JSON "application/json"
#define DEFAULT_CA_BUNDLE_PATH "curl-ca-bundle.crt"
typedef struct {
typedef struct read_buffer {
char *ptr;
int length;
int position;
} read_buffer;
typedef struct {
typedef struct write_buffer {
char *ptr;
int length;
int capacity;