e4d5c1ce36
This will allow to define symbols in options.c without all the dependencies of scrcpy.c.
23 lines
478 B
C
23 lines
478 B
C
#ifndef SC_MOUSE_INJECT_H
|
|
#define SC_MOUSE_INJECT_H
|
|
|
|
#include "common.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "controller.h"
|
|
#include "screen.h"
|
|
#include "trait/mouse_processor.h"
|
|
|
|
struct sc_mouse_inject {
|
|
struct sc_mouse_processor mouse_processor; // mouse processor trait
|
|
|
|
struct controller *controller;
|
|
struct screen *screen;
|
|
};
|
|
|
|
void
|
|
sc_mouse_inject_init(struct sc_mouse_inject *mi, struct controller *controller,
|
|
struct screen *screen);
|
|
|
|
#endif
|