Initial revision

This commit is contained in:
Geoffrey D. Bennett
2022-03-14 09:24:43 +10:30
commit 17b4d2f055
89 changed files with 40806 additions and 0 deletions

16
src/window-helper.h Normal file
View File

@@ -0,0 +1,16 @@
// SPDX-FileCopyrightText: 2022 Geoffrey D. Bennett <g@b4.vu>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <gtk/gtk.h>
#include "alsa.h"
gboolean window_startup_close_request(GtkWindow *w, gpointer data);
GtkWidget *create_subwindow(
struct alsa_card *card,
const char *name,
GCallback close_callback
);