Skip to content

Commit d39d189

Browse files
committed
fix: add edge touch native stub
1 parent a8f23da commit d39d189

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

server/native_stubs.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,17 @@ bool xcw_native_input_send_touch(void *handle, double x, double y,
321321
return xcw_unsupported(error_message);
322322
}
323323

324+
bool xcw_native_input_send_edge_touch(void *handle, double x, double y,
325+
const char *phase, uint32_t edge,
326+
char **error_message) {
327+
(void)handle;
328+
(void)x;
329+
(void)y;
330+
(void)phase;
331+
(void)edge;
332+
return xcw_unsupported(error_message);
333+
}
334+
324335
bool xcw_native_input_send_multitouch(void *handle, double x1, double y1,
325336
double x2, double y2,
326337
const char *phase,

0 commit comments

Comments
 (0)