This repository has been archived on 2025-09-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
alsa-scarlett-gui/src/routing-lines.h
Geoffrey D. Bennett 17b4d2f055 Initial revision
2022-03-14 09:24:43 +10:30

23 lines
463 B
C

// SPDX-FileCopyrightText: 2022 Geoffrey D. Bennett <g@b4.vu>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <gtk/gtk.h>
void draw_routing_lines(
GtkDrawingArea *drawing_area,
cairo_t *cr,
int width,
int height,
void *user_data
);
void draw_drag_line(
GtkDrawingArea *drawing_area,
cairo_t *cr,
int width,
int height,
void *user_data
);