Archived
15 lines
232 B
C
15 lines
232 B
C
#ifndef INCLUDE_H
|
|
#define INCLUDE_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
#include "libusb-1.0.30/libusb/libusb.h"
|
|
|
|
// mouse pid
|
|
#define TARGET_VID 0x3554
|
|
#define TARGET_PID 0xf54d
|
|
|
|
#endif
|