You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
robomaster-sdk/include/robomaster.h

16 lines
257 B
C

#pragma once
#include <stdlib.h>
#include <stddef.h>
#include <inttypes.h>
#include <stdbool.h>
// Public stuff
struct Message;
struct Client;
typedef struct Client* Client;
typedef struct Message* Message;
Client client_new(void* buffer, size_t size);