storj/lib/uplinkc/uplink_definitions.h
Bryan White bc33964729 Uplink C bindings part 1 (#2196)
* uplink cbindings tooling
2019-06-13 11:09:05 -04:00

18 lines
376 B
C

#pragma once
#include <stdint.h>
#include <stdbool.h>
#include <stdlib.h>
typedef struct APIKey { long _handle; } APIKey;
typedef struct Uplink { long _handle; } Uplink;
typedef struct Project { long _handle; } Project;
typedef struct UplinkConfig {
struct {
struct {
uint8_t SkipPeerCAWhitelist;
} TLS;
} Volatile;
} UplinkConfig;