blob: 150623b801b68ddf1dcf628768bc00523ebec704 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <assert.h>
#include <string.h>
#include <stdbool.h>
#include <libusb-1.0/libusb.h>
#include <stdlib.h>
#include <stdio.h>
#include <hidapi/hidapi.h>
#define IMAGE_REPORT_LENGTH 8191
typedef struct Image image;
typedef struct Key key;
typedef struct Screen screen;
typedef struct Streamdeck streamdeck;
typedef struct Handler handler;
int connect();
int close();
handler* create_hid_handler();
|