minilauncher-for-slippi/http.h

17 lines
265 B
C

#ifndef HTTP_H
#define HTTP_H
#include <Ecore.h>
struct memory_chunk {
char* data;
size_t size;
};
struct memory_chunk*
memory_chunk_alloc(void);
Eina_Bool
memory_chunk_data(void *data EINA_UNUSED, int type EINA_UNUSED, void *event_info);
#endif /* HTTP_H */