mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
9 lines
259 B
C
9 lines
259 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "terminal.h"
|
||
|
|
|
||
|
|
void selection_start(struct terminal *term, int col, int row);
|
||
|
|
void selection_update(struct terminal *term, int col, int row);
|
||
|
|
void selection_finalizie(struct terminal *term);
|
||
|
|
void selection_cancel(struct terminal *term);
|